summaryrefslogtreecommitdiff
path: root/include/dns.h
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2011-04-08 03:48:43 -0400
committerAdam <Adam@anope.org>2011-04-10 17:54:20 -0400
commitb56565eac2d7207c88c53054cb1096519ec7fba9 (patch)
treecd0f10a47dd002157553d96e2ef91ea5d620eadc /include/dns.h
parentf8588b112fe6ef1095e40fcd64f85e670d96bc92 (diff)
Fixed Windows build on VS 2010
Diffstat (limited to 'include/dns.h')
-rw-r--r--include/dns.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/dns.h b/include/dns.h
index 528490015..b22a2032e 100644
--- a/include/dns.h
+++ b/include/dns.h
@@ -97,7 +97,7 @@ class CoreExport CachedQuery
#if defined(WINDOWS) && !defined(HASHMAP_DEPRECATED)
typedef nspace::hash_map<irc::string, CachedQuery, nspace::hash_compare<irc::string> > dnscache;
#else
-typedef nspace::hash_map<irc::string, CachedQuery, nspace::hash<irc::string> > dnscache;
+typedef nspace::hash_map<irc::string, CachedQuery, irc::hash> dnscache;
#endif
/**