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 ++-- src/drumkitparser.h | 2 +- src/saxparser.h | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) (limited to 'src') 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; }; diff --git a/src/drumkitparser.h b/src/drumkitparser.h index f857590..b0c8d8f 100644 --- a/src/drumkitparser.h +++ b/src/drumkitparser.h @@ -46,7 +46,7 @@ private: DrumKit& kit; std::string path; - std::map channelmap; + std::unordered_map channelmap; std::string instr_file; std::string instr_name; std::string instr_group; diff --git a/src/saxparser.h b/src/saxparser.h index b4d9823..92197d1 100644 --- a/src/saxparser.h +++ b/src/saxparser.h @@ -27,7 +27,7 @@ #pragma once #include -#include +#include #include #include @@ -43,7 +43,7 @@ public: virtual int parseString(const std::string& str, const std::string& xml_source_name = ""); protected: - using attr_t = std::map; + using attr_t = std::unordered_map; virtual void characterData(const std::string& data) {} virtual void startTag(const std::string& name, const attr_t& attr) {} -- cgit v1.2.3