diff options
| author | 2011-04-08 03:48:43 -0400 | |
|---|---|---|
| committer | 2011-04-10 17:54:20 -0400 | |
| commit | b56565eac2d7207c88c53054cb1096519ec7fba9 (patch) | |
| tree | cd0f10a47dd002157553d96e2ef91ea5d620eadc /src/modules/m_watch.cpp | |
| parent | Revert to old sepstream logic until a proper fix is finished (diff) | |
| download | inspircd++-b56565eac2d7207c88c53054cb1096519ec7fba9.tar.gz inspircd++-b56565eac2d7207c88c53054cb1096519ec7fba9.tar.bz2 inspircd++-b56565eac2d7207c88c53054cb1096519ec7fba9.zip | |
Fixed Windows build on VS 2010
Diffstat (limited to 'src/modules/m_watch.cpp')
| -rw-r--r-- | src/modules/m_watch.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_watch.cpp b/src/modules/m_watch.cpp index 78da2799b..9a9e12bb1 100644 --- a/src/modules/m_watch.cpp +++ b/src/modules/m_watch.cpp @@ -90,7 +90,7 @@ #if defined(WINDOWS) && !defined(HASHMAP_DEPRECATED) 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; + typedef nspace::hash_map<irc::string, std::deque<User*>, irc::hash> watchentries; #endif typedef std::map<irc::string, std::string> watchlist; |
