From: brain Date: Thu, 12 Jun 2008 18:17:28 +0000 (+0000) Subject: Fix to allow namespace std { namespace tr1 { X-Git-Tag: v2.0.23~3029 X-Git-Url: https://git.netwichtig.de/gitweb/?a=commitdiff_plain;h=06a25cab68a58a4c9e985a394590b3288de33723;p=user%2Fhenk%2Fcode%2Finspircd.git Fix to allow namespace std { namespace tr1 { git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9893 e03df62e-2008-0410-955e-edbf42e46eb7 --- diff --git a/include/hash_map.h b/include/hash_map.h index 345420fc2..3665d9b1a 100644 --- a/include/hash_map.h +++ b/include/hash_map.h @@ -22,16 +22,22 @@ #include /** Oddball linux namespace for hash_map */ #define nspace __gnu_cxx + #define BEGIN_HASHMAP_NAMESPACE namespace nspace { + #define END_HASHMAP_NAMESPACE } #else #include #define hash_map unordered_map #define nspace std::tr1 + #define BEGIN_HASHMAP_NAMESPACE namespace std { namespace tr1 { + #define END_HASHMAP_NAMESPACE } } #endif #else #include #define nspace stdext /** Oddball windows namespace for hash_map */ using stdext::hash_map; + #define BEGIN_HASHMAP_NAMESPACE namespace nspace { + #define END_HASHMAP_NAMESPACE } #endif diff --git a/include/hashcomp.h b/include/hashcomp.h index 928abe809..e93875e3e 100644 --- a/include/hashcomp.h +++ b/include/hashcomp.h @@ -645,8 +645,8 @@ inline std::string& trim(std::string &str) /** Hashing stuff is totally different on vc++'s hash_map implementation, so to save a buttload of * #ifdefs we'll just do it all at once */ -namespace nspace -{ +BEGIN_HASHMAP_NAMESPACE + /** Hashing function to hash irc::string */ #ifdef WINDOWS @@ -711,7 +711,8 @@ namespace nspace * @param n A string to lowercase */ void strlower(char *n); -} + +END_HASHMAP_NAMESPACE #endif