summaryrefslogtreecommitdiff
path: root/include/hash_map.h
diff options
context:
space:
mode:
authorom <om@e03df62e-2008-0410-955e-edbf42e46eb7>2006-04-10 22:50:41 +0000
committerom <om@e03df62e-2008-0410-955e-edbf42e46eb7>2006-04-10 22:50:41 +0000
commit09dd16b981c38cbde7573398cb50ae1cf0531ade (patch)
treec9c078d2b5e41c9c76e3e5175e66fb4b7cb002d6 /include/hash_map.h
parent90639721625b5da867effc7dd4adec003c1bd3b4 (diff)
Route some more stuff through socket.h and hash_map.h. Add #define protection to timer.h and remove some unneeded includes and externs from timer.cpp
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3869 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/hash_map.h')
-rw-r--r--include/hash_map.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/hash_map.h b/include/hash_map.h
index f74dce92a..39529634a 100644
--- a/include/hash_map.h
+++ b/include/hash_map.h
@@ -21,11 +21,15 @@
#include "inspircd_config.h"
#ifdef GCC3
+
#include <ext/hash_map>
#define nspace __gnu_cxx
+
#else
+
#include <hash_map>
#define nspace std
+
#endif
#endif