diff options
author | Adam <Adam@anope.org> | 2010-07-29 18:38:56 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2010-07-29 18:38:56 -0400 |
commit | cc649031792af1e94c7701decd708aba4091d708 (patch) | |
tree | ee936f487cbae10f782bd81a50c058f5d2c36c83 /src/nickserv.cpp | |
parent | 04200cc8382519c8ea18d214002bc0f063be7d3c (diff) |
Rewrote the hashing systems to properly handle the new Anope::strings which we have everywhere.
Diffstat (limited to 'src/nickserv.cpp')
-rw-r--r-- | src/nickserv.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nickserv.cpp b/src/nickserv.cpp index 0397c8b32..960ae7a97 100644 --- a/src/nickserv.cpp +++ b/src/nickserv.cpp @@ -17,8 +17,8 @@ nickalias_map NickAliasList; nickcore_map NickCoreList; nickrequest_map NickRequestList; -typedef std::map<Anope::string, NickServCollide *, hash_compare_std_string> nickservcollides_map; -typedef std::map<Anope::string, NickServRelease *, hash_compare_std_string> nickservreleases_map; +typedef std::map<Anope::string, NickServCollide *> nickservcollides_map; +typedef std::map<Anope::string, NickServRelease *> nickservreleases_map; static nickservcollides_map NickServCollides; static nickservreleases_map NickServReleases; |