diff options
author | Peter Powell <petpow@saberuk.com> | 2016-12-08 01:58:59 +0000 |
---|---|---|
committer | Peter Powell <petpow@saberuk.com> | 2017-02-04 18:23:22 +0000 |
commit | 4b37c612257fa94a790d4698a2660112473599ae (patch) | |
tree | 8376835ffb58072ed37de3ab986dce16d0d2cdc1 /include/configparser.h | |
parent | 3fd1ba753d0e4cb56ecb22ddfdabd6795e17ff25 (diff) |
Make the config system case insensitive.
Diffstat (limited to 'include/configparser.h')
-rw-r--r-- | include/configparser.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configparser.h b/include/configparser.h index 02619e759..c9790c59f 100644 --- a/include/configparser.h +++ b/include/configparser.h @@ -41,7 +41,7 @@ enum ParseFlags struct ParseStack { std::vector<std::string> reading; - insp::flat_map<std::string, std::string> vars; + insp::flat_map<std::string, std::string, irc::insensitive_swo> vars; ConfigDataHash& output; ConfigFileCache& FilesOutput; std::stringstream& errstr; |