]> git.netwichtig.de Git - user/henk/code/inspircd.git/commitdiff
fixed more std:: stuff
authorfez <fez@e03df62e-2008-0410-955e-edbf42e46eb7>
Tue, 5 Feb 2008 03:02:05 +0000 (03:02 +0000)
committerfez <fez@e03df62e-2008-0410-955e-edbf42e46eb7>
Tue, 5 Feb 2008 03:02:05 +0000 (03:02 +0000)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8831 e03df62e-2008-0410-955e-edbf42e46eb7

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