aboutsummaryrefslogtreecommitdiffstats
path: root/ext/sparsehash/google/sparsehash/sparseconfig.h
diff options
context:
space:
mode:
Diffstat (limited to 'ext/sparsehash/google/sparsehash/sparseconfig.h')
-rw-r--r--ext/sparsehash/google/sparsehash/sparseconfig.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/ext/sparsehash/google/sparsehash/sparseconfig.h b/ext/sparsehash/google/sparsehash/sparseconfig.h
new file mode 100644
index 000000000..29e0bf867
--- /dev/null
+++ b/ext/sparsehash/google/sparsehash/sparseconfig.h
@@ -0,0 +1,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 {