summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/hashcomp.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/hashcomp.cpp b/src/hashcomp.cpp
index 1122c3867..7fe2fed6f 100644
--- a/src/hashcomp.cpp
+++ b/src/hashcomp.cpp
@@ -32,22 +32,14 @@
using namespace std;
-#ifdef GCC34
-size_t hash<in_addr>::operator()(const struct in_addr &a) const
-#else
size_t nspace::hash<in_addr>::operator()(const struct in_addr &a) const
-#endif
{
size_t q;
memcpy(&q,&a,sizeof(size_t));
return q;
}
-#ifdef GCC34
-size_t hash<string>::operator()(const string &s) const
-#else
size_t nspace::hash<string>::operator()(const string &s) const
-#endif
{
char a[MAXBUF];
static struct hash<const char *> strhash;