]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_spanningtree/utils.h
Fix m_chanlog crashing.
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / utils.h
index 3bf1a16e30878afd167c2b6728cdb85308b38be9..3bbff7ea6def7aae99595811567ebdebec451996 100644 (file)
@@ -26,7 +26,7 @@ class ModuleSpanningTree;
  * tree, used for rapid linear lookups.
  */
 #ifdef WINDOWS
-typedef nspace::hash_map<std::string, TreeServer*, nspace::hash_compare<std::string, std::less<string> > > server_hash;
+typedef nspace::hash_map<std::string, TreeServer*, nspace::hash_compare<std::string, std::less<std::string> > > server_hash;
 #else
 typedef nspace::hash_map<std::string, TreeServer*, nspace::hash<std::string>, irc::StrHashComp> server_hash;
 #endif