summaryrefslogtreecommitdiff
path: root/include/bancache.h
diff options
context:
space:
mode:
authorAttila Molnar <attilamolnar@hush.com>2013-04-20 12:04:12 -0700
committerAttila Molnar <attilamolnar@hush.com>2013-04-20 12:04:12 -0700
commite9e75e50bc25e67af22dd88b39b12217a553d5cb (patch)
treed16a152c375232039ce2243145c57d3bb4aed525 /include/bancache.h
parent326852f7dd3fd6989d37ad2991f8a174b3a86b65 (diff)
parent0d3a6719b8d924ea663f95e3e2fb834cbd80c6a5 (diff)
Merge pull request #495 from SaberUK/master+fix-libcpp
Fix building with libc++.
Diffstat (limited to 'include/bancache.h')
-rw-r--r--include/bancache.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/bancache.h b/include/bancache.h
index 450f711c4..7f51ca75e 100644
--- a/include/bancache.h
+++ b/include/bancache.h
@@ -51,7 +51,7 @@ class CoreExport BanCacheHit
/* A container of ban cache items.
* must be defined after class BanCacheHit.
*/
-typedef std::tr1::unordered_map<std::string, BanCacheHit*, std::tr1::hash<std::string> > BanCacheHash;
+typedef TR1NS::unordered_map<std::string, BanCacheHit*, TR1NS::hash<std::string> > BanCacheHash;
/** A manager for ban cache, which allocates and deallocates and checks cached bans.
*/