summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2017-12-28 02:03:48 +0300
committerAndrei Karas <akaras@inbox.ru>2017-12-28 02:03:48 +0300
commit2134c91e8f9793d07206febf22d5310132f3bc7e (patch)
tree6cf2efaae9f7937a214626b560e51b801ee832b5
parenta47c58162575187e30ab9610436bb608a89393de (diff)
downloadplus-2134c91e8f9793d07206febf22d5310132f3bc7e.tar.gz
plus-2134c91e8f9793d07206febf22d5310132f3bc7e.tar.bz2
plus-2134c91e8f9793d07206febf22d5310132f3bc7e.tar.xz
plus-2134c91e8f9793d07206febf22d5310132f3bc7e.zip
Add missing explicit keyword in key.h
-rw-r--r--src/input/key.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input/key.h b/src/input/key.h
index cc35260af..4d3297141 100644
--- a/src/input/key.h
+++ b/src/input/key.h
@@ -84,7 +84,7 @@ class Key final
*
* @param value The ascii or enum value for the key.
*/
- Key(const int value);
+ explicit Key(const int value);
A_DEFAULT_COPY(Key)