diff options
Diffstat (limited to 'src/modules')
-rw-r--r-- | src/modules/m_watch.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/modules/m_watch.cpp b/src/modules/m_watch.cpp index 27278cd89..bd75fc3c9 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 nspace::hash_map<irc::string, std::deque<userrec*>, nspace::hash<irc::string> > 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 nspace::hash_map<irc::string, std::string, nspace::hash<irc::string> > watchlist; +/* nickname 'ident host signon', or empty if not online */ +typedef std::map<irc::string, std::string> watchlist; /* Whos watching each nickname */ watchentries whos_watching_me; |