diff options
| author | 2012-10-12 14:50:05 -0700 | |
|---|---|---|
| committer | 2012-10-12 14:50:05 -0700 | |
| commit | c05ad37bfd03486475889485606ed5cffc7bf5a2 (patch) | |
| tree | fe01825889769500a0f080371a0714aa15505b9a /src/modules/m_watch.cpp | |
| parent | Fix broken build (diff) | |
| parent | Windows: In-depth cleanup (see details) (diff) | |
| download | inspircd++-c05ad37bfd03486475889485606ed5cffc7bf5a2.tar.gz inspircd++-c05ad37bfd03486475889485606ed5cffc7bf5a2.tar.bz2 inspircd++-c05ad37bfd03486475889485606ed5cffc7bf5a2.zip | |
Merge pull request #320 from ChrisTX/insp20+cleanupwin
Windows: In-depth cleanup (see details)
Diffstat (limited to 'src/modules/m_watch.cpp')
| -rw-r--r-- | src/modules/m_watch.cpp | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/modules/m_watch.cpp b/src/modules/m_watch.cpp index 7e98f2fbd..6aa12b4e7 100644 --- a/src/modules/m_watch.cpp +++ b/src/modules/m_watch.cpp @@ -96,11 +96,8 @@ * Before you start screaming, this definition is only used here, so moving it to a header is pointless. * Yes, it's horrid. Blame cl for being different. -- w00t */ -#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*>, irc::hash> watchentries; -#endif + +typedef nspace::hash_map<irc::string, std::deque<User*>, irc::hash> watchentries; typedef std::map<irc::string, std::string> watchlist; /* Who's watching each nickname. |
