diff options
-rw-r--r-- | include/bancache.h | 2 |
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 |