summaryrefslogtreecommitdiff
path: root/src/modules/m_watch.cpp
diff options
context:
space:
mode:
authorfez <fez@e03df62e-2008-0410-955e-edbf42e46eb7>2008-02-05 03:02:40 +0000
committerfez <fez@e03df62e-2008-0410-955e-edbf42e46eb7>2008-02-05 03:02:40 +0000
commit0862df5ab63b7c8bfeb410760519ec028e1ed6c5 (patch)
treec45622dc160b3c9d22b214df28969dcfe4ef5e82 /src/modules/m_watch.cpp
parent9e757557726a143e6aeb3979eb1386c23aba38fb (diff)
fixed std:: stuff
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8832 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_watch.cpp')
-rw-r--r--src/modules/m_watch.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_watch.cpp b/src/modules/m_watch.cpp
index ab00c38dc..669f76b53 100644
--- a/src/modules/m_watch.cpp
+++ b/src/modules/m_watch.cpp
@@ -62,7 +62,7 @@
* Yes, it's horrid. Blame cl for being different. -- w00t
*/
#ifdef WINDOWS
-typedef nspace::hash_map<irc::string, std::deque<User*>, nspace::hash_compare<irc::string, less<irc::string> > > watchentries;
+typedef nspace::hash_map<irc::string, std::deque<User*>, nspace::hash_compare<irc::string, std::less<irc::string> > > watchentries;
#else
typedef nspace::hash_map<irc::string, std::deque<User*>, nspace::hash<irc::string> > watchentries;
#endif