diff options
Diffstat (limited to 'src/KeyMap.cxx')
-rw-r--r-- | src/KeyMap.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/KeyMap.cxx b/src/KeyMap.cxx index 1f9a157fb..1e873dbfc 100644 --- a/src/KeyMap.cxx +++ b/src/KeyMap.cxx @@ -46,7 +46,7 @@ unsigned int KeyMap::Find(int key, int modifiers) const { return (it == kmap.end()) ? 0 : it->second; } -const std::map<KeyModifiers, unsigned int> &KeyMap::GetKeyMap() const { +const std::map<KeyModifiers, unsigned int> &KeyMap::GetKeyMap() const noexcept { return kmap; } |