diff options
| author | Maxime Coste <mawww@kakoune.org> | 2017-03-07 00:30:54 +0000 |
|---|---|---|
| committer | Maxime Coste <mawww@kakoune.org> | 2017-03-07 01:03:26 +0000 |
| commit | 6373338c50a9431de7440b9274a079b4dc6c5755 (patch) | |
| tree | 2e4d3be457593b1ca23a5d19eb8b17232ed5fafa /src/command_manager.hh | |
| parent | e9f93f1b2f0e650ab346596ee6b6bb6e90f55504 (diff) | |
Replace uses of UnorderedMap with HashMap
Diffstat (limited to 'src/command_manager.hh')
| -rw-r--r-- | src/command_manager.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/command_manager.hh b/src/command_manager.hh index 7ef10f2c..5269ca39 100644 --- a/src/command_manager.hh +++ b/src/command_manager.hh @@ -10,7 +10,7 @@ #include "string.hh" #include "optional.hh" #include "utils.hh" -#include "unordered_map.hh" +#include "hash_map.hh" #include <functional> #include <initializer_list> @@ -123,7 +123,7 @@ private: CommandHelper helper; CommandCompleter completer; }; - using CommandMap = UnorderedMap<String, CommandDescriptor, MemoryDomain::Commands>; + using CommandMap = HashMap<String, CommandDescriptor, MemoryDomain::Commands>; CommandMap m_commands; String m_last_complete_command; int m_command_depth = 0; |
