diff options
| author | Maxime Coste <frrrwww@gmail.com> | 2014-05-04 11:48:39 +0100 |
|---|---|---|
| committer | Maxime Coste <frrrwww@gmail.com> | 2014-05-04 11:48:39 +0100 |
| commit | 7f0e82dd81abf7afbaa80cc26b71e0a602744289 (patch) | |
| tree | b6920bdf9a3891ac728dfb8c756aab9aa2a98e5e /src/keymap_manager.hh | |
| parent | e92e6c775a357fd7912f806bfc1973b2443d463e (diff) | |
minor style tweak
Diffstat (limited to 'src/keymap_manager.hh')
| -rw-r--r-- | src/keymap_manager.hh | 3 |
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; }; |
