diff options
author | André Nusser <andre.nusser@googlemail.com> | 2016-03-28 11:21:51 +0200 |
---|---|---|
committer | André Nusser <andre.nusser@googlemail.com> | 2016-03-29 22:19:49 +0200 |
commit | 5e6e9d83bc0c04e3721f2674f9a33e172e524b2d (patch) | |
tree | 1f97ddf497845a6246237b6c41118baaf2611dcd /src/drumkitparser.h | |
parent | 8c585aa006741b95c1175afcdb01cdd3d8d2d7db (diff) |
Use unordered_map instead of map in the parsers.
Diffstat (limited to 'src/drumkitparser.h')
-rw-r--r-- | src/drumkitparser.h | 2 |
1 files changed, 1 insertions, 1 deletions
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<std::string, std::string> channelmap; + std::unordered_map<std::string, std::string> channelmap; std::string instr_file; std::string instr_name; std::string instr_group; |