diff options
| author | Maxime Coste <mawww@kakoune.org> | 2017-03-07 01:12:37 +0000 |
|---|---|---|
| committer | Maxime Coste <mawww@kakoune.org> | 2017-03-07 01:12:37 +0000 |
| commit | f0ae0b84102a0cb7d0dda0b8b7b1ba425d5d6eb7 (patch) | |
| tree | 0a38687f1796139771873cd760192af747baf4b4 /src/user_interface.hh | |
| parent | 6373338c50a9431de7440b9274a079b4dc6c5755 (diff) | |
Replace IdMap with HashMap
Diffstat (limited to 'src/user_interface.hh')
| -rw-r--r-- | src/user_interface.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/user_interface.hh b/src/user_interface.hh index a6a65885..b202f188 100644 --- a/src/user_interface.hh +++ b/src/user_interface.hh @@ -2,7 +2,7 @@ #define user_interface_hh_INCLUDED #include "array_view.hh" -#include "id_map.hh" +#include "hash_map.hh" #include <functional> @@ -66,7 +66,7 @@ public: virtual void set_on_key(OnKeyCallback callback) = 0; - using Options = IdMap<String, MemoryDomain::Options>; + using Options = HashMap<String, String, MemoryDomain::Options>; virtual void set_ui_options(const Options& options) = 0; }; |
