summaryrefslogtreecommitdiff
path: root/include/commands.h
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 /include/commands.h
parent04200cc8382519c8ea18d214002bc0f063be7d3c (diff)
Rewrote the hashing systems to properly handle the new Anope::strings which we have everywhere.
Diffstat (limited to 'include/commands.h')
-rw-r--r--include/commands.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/commands.h b/include/commands.h
index 71fee7e42..0c8b7bae1 100644
--- a/include/commands.h
+++ b/include/commands.h
@@ -18,7 +18,7 @@ class Module;
class BotInfo;
class Command;
-typedef std::map<Anope::string, Command *, hash_compare_ci_string> CommandMap;
+typedef std::map<Anope::string, Command *, std::less<ci::string> > CommandMap;
/** The return value from commands.
*/