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 /modules/extra/hs_request.cpp | |
parent | 04200cc8382519c8ea18d214002bc0f063be7d3c (diff) |
Rewrote the hashing systems to properly handle the new Anope::strings which we have everywhere.
Diffstat (limited to 'modules/extra/hs_request.cpp')
-rw-r--r-- | modules/extra/hs_request.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/extra/hs_request.cpp b/modules/extra/hs_request.cpp index 2f40e6912..5c5a649f0 100644 --- a/modules/extra/hs_request.cpp +++ b/modules/extra/hs_request.cpp @@ -66,7 +66,7 @@ struct HostRequest time_t time; }; -typedef std::map<Anope::string, HostRequest *, hash_compare_ci_string> RequestMap; +typedef std::map<Anope::string, HostRequest *, std::less<ci::string> > RequestMap; RequestMap Requests; static Module *me; |