summaryrefslogtreecommitdiff
path: root/include/hash_map.h
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2007-06-17 18:45:22 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2007-06-17 18:45:22 +0000
commit603acdf77e561f527b27a4da5a4c74dc9d699b89 (patch)
tree5f604546b2cedf13a0af699ded58085e00029a92 /include/hash_map.h
parentba98faf0d8d95b7490e5508e123a06ba6c7489be (diff)
Comments (lots of)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7377 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/hash_map.h')
-rw-r--r--include/hash_map.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/hash_map.h b/include/hash_map.h
index ad38d426a..784a8bc3b 100644
--- a/include/hash_map.h
+++ b/include/hash_map.h
@@ -16,12 +16,17 @@
#include "inspircd_config.h"
+/** Where hash_map is varies from compiler to compiler
+ * as it is not standard.
+ */
#ifndef WIN32
#include <ext/hash_map>
+/** Oddball linux namespace for hash_map */
#define nspace __gnu_cxx
#else
#include <hash_map>
#define nspace stdext
+/** Oddball windows namespace for hash_map */
using stdext::hash_map;
#endif