aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/m_watch.cpp
diff options
context:
space:
mode:
authorGravatar Attila Molnar2013-04-01 09:50:50 -0700
committerGravatar Attila Molnar2013-04-01 09:50:50 -0700
commit66b90807bb94d88c8a34ec8a1fd7c1558941c47a (patch)
treeb2147238c609c5b1733c518b1b932b0e40ddb8a0 /src/modules/m_watch.cpp
parentMove member variables from User to LocalUser (diff)
parentPurge the deprecated hash_map from existance. (diff)
downloadinspircd++-66b90807bb94d88c8a34ec8a1fd7c1558941c47a.tar.gz
inspircd++-66b90807bb94d88c8a34ec8a1fd7c1558941c47a.tar.bz2
inspircd++-66b90807bb94d88c8a34ec8a1fd7c1558941c47a.zip
Merge pull request #452 from SaberUK/master+nuke-hashmap
Purge the deprecated hash_map from existance.
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 ec38edc31..3b87ed4c3 100644
--- a/src/modules/m_watch.cpp
+++ b/src/modules/m_watch.cpp
@@ -97,7 +97,7 @@
* Yes, it's horrid. Blame cl for being different. -- w00t
*/
-typedef nspace::hash_map<irc::string, std::deque<User*>, irc::hash> watchentries;
+typedef std::tr1::unordered_map<irc::string, std::deque<User*>, irc::hash> watchentries;
typedef std::map<irc::string, std::string> watchlist;
/* Who's watching each nickname.