From 5e6e9d83bc0c04e3721f2674f9a33e172e524b2d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Nusser?= Date: Mon, 28 Mar 2016 11:21:51 +0200 Subject: Use unordered_map instead of map in the parsers. --- src/configparser.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/configparser.h') 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 +#include #include "saxparser.h" @@ -42,6 +42,6 @@ public: std::string value(const std::string& name, const std::string& def = ""); private: - std::map values; + std::unordered_map values; std::string* str; }; -- cgit v1.2.3