summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/typedefs.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/typedefs.h b/include/typedefs.h
index 6395bfe39..d80e578de 100644
--- a/include/typedefs.h
+++ b/include/typedefs.h
@@ -24,10 +24,10 @@ typedef nspace::hash_map<std::string, Channel*, nspace::hash<std::string>, irc::
#else
/** User hash (windows systems with visual studio)
*/
-typedef nspace::hash_map<std::string, User*, nspace::hash_compare<std::string, less<std::string> > > user_hash;
+typedef nspace::hash_map<std::string, User*, nspace::hash_compare<std::string, std::less<std::string> > > user_hash;
/** Channel hash (windows systems with visual studio)
*/
-typedef nspace::hash_map<std::string, Channel*, nspace::hash_compare<std::string, less<std::string> > > chan_hash;
+typedef nspace::hash_map<std::string, Channel*, nspace::hash_compare<std::string, std::less<std::string> > > chan_hash;
#endif
/** Server name cache