minor style tweak

This commit is contained in:
Maxime Coste 2014-05-04 11:48:39 +01:00
parent e92e6c775a
commit 7f0e82dd81

View File

@ -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;
};