aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/KeyMap.cxx
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2019-04-28 09:35:43 +1000
committerNeil <nyamatongwe@gmail.com>2019-04-28 09:35:43 +1000
commit8be8298fd9fadccef7caa8cc4232f53a2f4b91fb (patch)
treec0c93aa18badda60b99a34068d660a2c745ae678 /src/KeyMap.cxx
parent313dbb58ac65fe8bea529f3990c4ba688500d3b4 (diff)
downloadscintilla-mirror-8be8298fd9fadccef7caa8cc4232f53a2f4b91fb.tar.gz
Declare KeyMap::Clear() noexcept as called in destructor.
Diffstat (limited to 'src/KeyMap.cxx')
-rw-r--r--src/KeyMap.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/KeyMap.cxx b/src/KeyMap.cxx
index d7f87a5d9..1f9a157fb 100644
--- a/src/KeyMap.cxx
+++ b/src/KeyMap.cxx
@@ -33,7 +33,7 @@ KeyMap::~KeyMap() {
Clear();
}
-void KeyMap::Clear() {
+void KeyMap::Clear() noexcept {
kmap.clear();
}