summaryrefslogtreecommitdiff
path: root/modules/core/cs_set.cpp
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2010-07-29 18:38:56 -0400
committerAdam <Adam@anope.org>2010-07-29 18:38:56 -0400
commitcc649031792af1e94c7701decd708aba4091d708 (patch)
treeee936f487cbae10f782bd81a50c058f5d2c36c83 /modules/core/cs_set.cpp
parent04200cc8382519c8ea18d214002bc0f063be7d3c (diff)
Rewrote the hashing systems to properly handle the new Anope::strings which we have everywhere.
Diffstat (limited to 'modules/core/cs_set.cpp')
-rw-r--r--modules/core/cs_set.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/core/cs_set.cpp b/modules/core/cs_set.cpp
index b9acb2a53..219fbb3c1 100644
--- a/modules/core/cs_set.cpp
+++ b/modules/core/cs_set.cpp
@@ -15,7 +15,7 @@
class CommandCSSet : 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: