]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/bancache.h
Allow for skipping clone checking before DNS is complete.
[user/henk/code/inspircd.git] / include / bancache.h
index 9cff918028af09ecd346b88309b8b31bf6bfabba..7f51ca75e673e187dccf9d4089a3ac3b68aa27e9 100644 (file)
@@ -18,8 +18,7 @@
  */
 
 
-#ifndef BANCACHE_H
-#define BANCACHE_H
+#pragma once
 
 /** Stores a cached ban entry.
  * Each ban has one of these hashed in a hash_map to make for faster removal
@@ -52,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.
  */
@@ -84,5 +83,3 @@ class CoreExport BanCacheManager
        }
        ~BanCacheManager();
 };
-
-#endif