diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/commands.cpp | 51 | ||||
-rw-r--r-- | src/inspircd.cpp | 51 | ||||
-rw-r--r-- | src/modules.cpp | 52 | ||||
-rw-r--r-- | src/xline.cpp | 9 |
4 files changed, 95 insertions, 68 deletions
diff --git a/src/commands.cpp b/src/commands.cpp index b149da7e8..0173f9113 100644 --- a/src/commands.cpp +++ b/src/commands.cpp @@ -116,28 +116,35 @@ const long duration_y = duration_w * 52; namespace nspace { - template<> struct nspace::hash<in_addr> - { - size_t operator()(const struct in_addr &a) const - { - size_t q; - memcpy(&q,&a,sizeof(size_t)); - return q; - } - }; - - template<> struct nspace::hash<string> - { - size_t operator()(const string &s) const - { - char a[MAXBUF]; - static struct hash<const char *> strhash; - strlcpy(a,s.c_str(),MAXBUF); - strlower(a); - return strhash(a); - } - }; -} +#ifdef GCC34 + template<> struct hash<in_addr> +#else + template<> struct nspace::hash<in_addr> +#endif + { + size_t operator()(const struct in_addr &a) const + { + size_t q; + memcpy(&q,&a,sizeof(size_t)); + return q; + } + }; +#ifdef GCC34 + template<> struct hash<string> +#else + template<> struct nspace::hash<string> +#endif + { + size_t operator()(const string &s) const + { + char a[MAXBUF]; + static struct hash<const char *> strhash; + strlcpy(a,s.c_str(),MAXBUF); + strlower(a); + return strhash(a); + } + }; +} struct StrHashComp diff --git a/src/inspircd.cpp b/src/inspircd.cpp index a9ef0e341..ecfbd6b0f 100644 --- a/src/inspircd.cpp +++ b/src/inspircd.cpp @@ -100,28 +100,35 @@ bool nofork = false; namespace nspace { - template<> struct nspace::hash<in_addr> - { - size_t operator()(const struct in_addr &a) const - { - size_t q; - memcpy(&q,&a,sizeof(size_t)); - return q; - } - }; - - template<> struct nspace::hash<string> - { - size_t operator()(const string &s) const - { - char a[MAXBUF]; - static struct hash<const char *> strhash; - strlcpy(a,s.c_str(),MAXBUF); - strlower(a); - return strhash(a); - } - }; -} +#ifdef GCC34 + template<> struct hash<in_addr> +#else + template<> struct nspace::hash<in_addr> +#endif + { + size_t operator()(const struct in_addr &a) const + { + size_t q; + memcpy(&q,&a,sizeof(size_t)); + return q; + } + }; +#ifdef GCC34 + template<> struct hash<string> +#else + template<> struct nspace::hash<string> +#endif + { + size_t operator()(const string &s) const + { + char a[MAXBUF]; + static struct hash<const char *> strhash; + strlcpy(a,s.c_str(),MAXBUF); + strlower(a); + return strhash(a); + } + }; +} struct StrHashComp diff --git a/src/modules.cpp b/src/modules.cpp index d5288d371..7f3603fb7 100644 --- a/src/modules.cpp +++ b/src/modules.cpp @@ -107,29 +107,35 @@ extern FILE *log_file; namespace nspace { - template<> struct nspace::hash<in_addr> - { - size_t operator()(const struct in_addr &a) const - { - size_t q; - memcpy(&q,&a,sizeof(size_t)); - return q; - } - }; - - template<> struct nspace::hash<string> - { - size_t operator()(const string &s) const - { - char a[MAXBUF]; - static struct hash<const char *> strhash; - strlcpy(a,s.c_str(),MAXBUF); - strlower(a); - return strhash(a); - } - }; -} - +#ifdef GCC34 + template<> struct hash<in_addr> +#else + template<> struct nspace::hash<in_addr> +#endif + { + size_t operator()(const struct in_addr &a) const + { + size_t q; + memcpy(&q,&a,sizeof(size_t)); + return q; + } + }; +#ifdef GCC34 + template<> struct hash<string> +#else + template<> struct nspace::hash<string> +#endif + { + size_t operator()(const string &s) const + { + char a[MAXBUF]; + static struct hash<const char *> strhash; + strlcpy(a,s.c_str(),MAXBUF); + strlower(a); + return strhash(a); + } + }; +} struct StrHashComp { diff --git a/src/xline.cpp b/src/xline.cpp index 064903ba1..5559390e7 100644 --- a/src/xline.cpp +++ b/src/xline.cpp @@ -105,7 +105,11 @@ extern FILE *log_file; namespace nspace { +#ifdef GCC34 + template<> struct hash<in_addr> +#else template<> struct nspace::hash<in_addr> +#endif { size_t operator()(const struct in_addr &a) const { @@ -114,8 +118,11 @@ namespace nspace return q; } }; - +#ifdef GCC34 + template<> struct hash<string> +#else template<> struct nspace::hash<string> +#endif { size_t operator()(const string &s) const { |