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/core/ns_saset.cpp | |
parent | 04200cc8382519c8ea18d214002bc0f063be7d3c (diff) |
Rewrote the hashing systems to properly handle the new Anope::strings which we have everywhere.
Diffstat (limited to 'modules/core/ns_saset.cpp')
-rw-r--r-- | modules/core/ns_saset.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/core/ns_saset.cpp b/modules/core/ns_saset.cpp index 081e1d466..624f25b7b 100644 --- a/modules/core/ns_saset.cpp +++ b/modules/core/ns_saset.cpp @@ -15,7 +15,7 @@ class CommandNSSASet : public Command { - typedef std::map<Anope::string, Command *, hash_compare_ci_string> subcommand_map; + typedef std::map<Anope::string, Command *, std::less<ci::string> > subcommand_map; subcommand_map subcommands; public: |