diff options
author | om <om@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-04-10 22:16:34 +0000 |
---|---|---|
committer | om <om@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-04-10 22:16:34 +0000 |
commit | 90639721625b5da867effc7dd4adec003c1bd3b4 (patch) | |
tree | 4d7ac8c92b1c6dd9f9b9ddda4091283d65007a69 /include/hashcomp.h | |
parent | 129416e519319360c336cb3905210fdb9b531ae2 (diff) |
Routing more socket includes through socket.h
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3868 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/hashcomp.h')
-rw-r--r-- | include/hashcomp.h | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/include/hashcomp.h b/include/hashcomp.h index 7ec813ad6..dc8c1ec81 100644 --- a/include/hashcomp.h +++ b/include/hashcomp.h @@ -18,6 +18,8 @@ #define _HASHCOMP_H_ #include "inspircd_config.h" +#include "socket.h" +#include "hash_map.h" /******************************************************* * This file contains classes and templates that deal @@ -33,19 +35,7 @@ * backwards compatible with other code which is not * aware of irc::string. *******************************************************/ - -#ifdef GCC3 -#include <ext/hash_map> -#else -#include <hash_map> -#endif - -#ifdef GCC3 -#define nspace __gnu_cxx -#else -#define nspace std -#endif - + using namespace std; namespace nspace |