summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2009-08-26 17:57:44 +0000
committerw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2009-08-26 17:57:44 +0000
commit1c4e1d10d0ead671f138b36d98574ddff1baa12f (patch)
tree973d071ace883a8ea1f91696bb0c12126cca7ec8 /include
parentc64333e02a4449616683e672739526f4cc762101 (diff)
Of course, in adding yet more header madness to this for VS2010, I forgot to keep the old hash_map include for windows.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11539 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include')
-rw-r--r--include/hash_map.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/hash_map.h b/include/hash_map.h
index 6e47d292b..94d219898 100644
--- a/include/hash_map.h
+++ b/include/hash_map.h
@@ -36,8 +36,9 @@
#define HAS_TR1_UNORDERED
#define HASHMAP_DEPRECATED
#else
- #define nspace stdext
/** Oddball windows namespace for hash_map */
+ #include <hash_map>
+ #define nspace stdext
using stdext::hash_map;
#define BEGIN_HASHMAP_NAMESPACE namespace nspace {
#define END_HASHMAP_NAMESPACE }