summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfez <fez@e03df62e-2008-0410-955e-edbf42e46eb7>2008-02-05 02:41:22 +0000
committerfez <fez@e03df62e-2008-0410-955e-edbf42e46eb7>2008-02-05 02:41:22 +0000
commit532d9de8c5dc2fe059c591109ce4ce6a3e813bb8 (patch)
treee3cf737c8c096fe04fd8730ae1618547b074a2ca
parent426be9a89f976a10441b268ac25608af5e1104cb (diff)
fixed std:: stuff
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8825 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r--include/bancache.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/bancache.h b/include/bancache.h
index 3aee3cffd..944d69816 100644
--- a/include/bancache.h
+++ b/include/bancache.h
@@ -48,7 +48,7 @@ class CoreExport BanCacheHit : public classbase
#ifndef WIN32
typedef nspace::hash_map<std::string, BanCacheHit *, nspace::hash<std::string> > BanCacheHash;
#else
-typedef nspace::hash_map<std::string, BanCacheHit*, nspace::hash_compare<string, less<string> > > BanCacheHash;
+typedef nspace::hash_map<std::string, BanCacheHit*, nspace::hash_compare<std::string, std::less<std::string> > > BanCacheHash;
#endif
class CoreExport BanCacheManager : public classbase