]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/command_parse.h
Change ServerInfo::gecos to description
[user/henk/code/inspircd.git] / include / command_parse.h
index 0f39d35860f3ec7415372fadb7eb5bfd2e625882..ec5ebba485ad1f02c82f15f559c96ff54d603024 100644 (file)
@@ -30,7 +30,7 @@
 class CoreExport CommandParser
 {
  public:
-       typedef TR1NS::unordered_map<std::string, Command*> CommandMap;
+       typedef TR1NS::unordered_map<std::string, Command*, irc::insensitive, irc::StrHashComp> CommandMap;
 
  private:
        /** Process a command from a user.
@@ -85,7 +85,7 @@ class CoreExport CommandParser
         * With one list it is much simpler, and is used in NAMES, WHOIS, PRIVMSG etc.
         *
         * If there is only one list and there are duplicates in it, then the command handler is only called for
-        * unique items. Entries are compared using "irc comparision" (see irc::string).
+        * unique items. Entries are compared using "irc comparison".
         * If the usemax parameter is true (the default) the function only parses until it reaches
         * ServerInstance->Config->MaxTargets number of targets, to stop abuse via spam.
         *