]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/bancache.h
Remove SpanningTreeProtocolInterface::SendOperNotice - it was translated to a SendSNO...
[user/henk/code/inspircd.git] / include / bancache.h
index b00bcbae562a06b888ff6026f14f2c6a2fcdafd8..944d69816e5450d19d1de264a8ac5a8e81d0bf9a 100644 (file)
@@ -14,8 +14,6 @@
 #ifndef __BANCACHE_H
 #define __BANCACHE_H
 
-#include <string>
-
 class CoreExport BanCacheHit : public classbase
 {
  private:
@@ -50,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