aboutsummaryrefslogtreecommitdiffstats
path: root/ext/sparsehash/google/sparsehash/sparseconfig.h
blob: 29e0bf8677badf540e3ecb7ca29224b86b2834bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*
 * NOTE: This file is for internal use only.
 *       Do not use these #defines in your own program!
 */

/* Namespace for Google classes */
#define GOOGLE_NAMESPACE ::google

/* the location of the header defining hash functions */
#define HASH_FUN_H <tr1/functional>

/* the namespace of the hash<> function */
#define HASH_NAMESPACE std::tr1

/* Define to 1 if the system has the type `long long'. */
#define HAVE_LONG_LONG 1

/* The system-provided hash function including the namespace. */
#define SPARSEHASH_HASH HASH_NAMESPACE::hash

/* the namespace where STL code like vector<> is defined */
#define STL_NAMESPACE std

/* Stops putting the code inside the Google namespace */
#define _END_GOOGLE_NAMESPACE_ }

/* Puts following code inside the Google namespace */
#define _START_GOOGLE_NAMESPACE_ namespace google {