aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken2/ext/sparsehash/google/sparsehash/sparseconfig.h
blob: 28c85d1f448f6d8968d988cec134cb895b1a70b9 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/*
 * 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

#ifdef _MSC_VER
    /* the location of the header defining hash functions */
    #define HASH_FUN_H <unordered_map>
    /* the namespace of the hash<> function */
    #define HASH_NAMESPACE stdext
    /* The system-provided hash function including the namespace. */
    #define SPARSEHASH_HASH  HASH_NAMESPACE::hash_compare
/* libc++ does not implement the tr1 namespce, instead the
 * equivalient functionality is placed in namespace std,
 * so use when it targeting such systems (OS X 10.7 onwards) */
#elif defined(_LIBCPP_VERSION)
    /* the location of the header defining hash functions */
    #define HASH_FUN_H <functional>
    /* the namespace of the hash<> function */
    #define HASH_NAMESPACE std
    /* The system-provided hash function including the namespace. */
    #define SPARSEHASH_HASH HASH_NAMESPACE::hash
#else
    /* 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
    /* The system-provided hash function including the namespace. */
    #define SPARSEHASH_HASH HASH_NAMESPACE::hash
#endif

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

/* 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 {