summaryrefslogtreecommitdiff
path: root/src/keymap_manager.hh
diff options
context:
space:
mode:
authorMaxime Coste <frrrwww@gmail.com>2014-05-04 11:48:39 +0100
committerMaxime Coste <frrrwww@gmail.com>2014-05-04 11:48:39 +0100
commit7f0e82dd81abf7afbaa80cc26b71e0a602744289 (patch)
treeb6920bdf9a3891ac728dfb8c756aab9aa2a98e5e /src/keymap_manager.hh
parente92e6c775a357fd7912f806bfc1973b2443d463e (diff)
minor style tweak
Diffstat (limited to 'src/keymap_manager.hh')
-rw-r--r--src/keymap_manager.hh3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/keymap_manager.hh b/src/keymap_manager.hh
index caf4174a..7ccdba61 100644
--- a/src/keymap_manager.hh
+++ b/src/keymap_manager.hh
@@ -36,7 +36,8 @@ private:
KeymapManager* m_parent;
- using Keymap = std::unordered_map<std::pair<Key, KeymapMode>, std::vector<Key>>;
+ using KeyList = std::vector<Key>;
+ using Keymap = std::unordered_map<std::pair<Key, KeymapMode>, KeyList>;
Keymap m_mapping;
};