diff options
Diffstat (limited to 'src/configparser.h')
-rw-r--r-- | src/configparser.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/configparser.h b/src/configparser.h index 79f0cb1..29e47b0 100644 --- a/src/configparser.h +++ b/src/configparser.h @@ -26,7 +26,7 @@ */ #pragma once -#include <map> +#include <unordered_map> #include "saxparser.h" @@ -42,6 +42,6 @@ public: std::string value(const std::string& name, const std::string& def = ""); private: - std::map<std::string, std::string> values; + std::unordered_map<std::string, std::string> values; std::string* str; }; |