summaryrefslogtreecommitdiff
path: root/src/modules
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-12-13 20:07:08 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-12-13 20:07:08 +0000
commit6bd9e67851ee7294e3529c3d7a4b05aa8601a2e3 (patch)
treeb37c8896d49c98854c7f71533782d1474252c5f7 /src/modules
parentf240285155d115ee3a0fd437944f2bec05a0c14c (diff)
Change m_watch to use hash_map rather than map, because of the large number of entries we deal with it will usually be faster
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5979 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules')
-rw-r--r--src/modules/m_watch.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/modules/m_watch.cpp b/src/modules/m_watch.cpp
index 46eb601dd..27278cd89 100644
--- a/src/modules/m_watch.cpp
+++ b/src/modules/m_watch.cpp
@@ -27,11 +27,11 @@ using namespace std;
/* $ModDesc: Provides support for the /watch command */
-/* nickname list of users watching the nick */
-typedef std::map<irc::string, std::deque<userrec*> > watchentries;
+/* nickname list of users watching the nick */
+typedef nspace::hash_map<irc::string, std::deque<userrec*>, nspace::hash<irc::string> > watchentries;
-/* nickname 'ident host signon', or empty if not online */
-typedef std::map<irc::string, std::string> watchlist;
+/* nickname 'ident host signon', or empty if not online */
+typedef nspace::hash_map<irc::string, std::string, nspace::hash<irc::string> > watchlist;
/* Whos watching each nickname */
watchentries whos_watching_me;