diff options
author | Peter Powell <petpow@saberuk.com> | 2013-04-01 05:25:03 +0100 |
---|---|---|
committer | Peter Powell <petpow@saberuk.com> | 2013-04-01 05:57:33 +0100 |
commit | fd655fa93a00a5f2993adb7ef562b6dbab8aa87c (patch) | |
tree | 31157094a88c713ffa3bdf549b936e13ae22712c /include/bancache.h | |
parent | 1cb05553e286227e6bbd463d0b4b8cae40ff3940 (diff) |
Purge the deprecated hash_map from existance.
Diffstat (limited to 'include/bancache.h')
-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 a7aac7f17..a99e97856 100644 --- a/include/bancache.h +++ b/include/bancache.h @@ -65,7 +65,7 @@ class CoreExport BanCacheHit /* A container of ban cache items. * must be defined after class BanCacheHit. */ -typedef nspace::hash_map<std::string, BanCacheHit*, nspace::hash<std::string> > BanCacheHash; +typedef std::tr1::unordered_map<std::string, BanCacheHit*, std::tr1::hash<std::string> > BanCacheHash; /** A manager for ban cache, which allocates and deallocates and checks cached bans. */ |