diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-12-28 02:03:48 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-12-28 02:03:48 +0300 |
commit | 2134c91e8f9793d07206febf22d5310132f3bc7e (patch) | |
tree | 6cf2efaae9f7937a214626b560e51b801ee832b5 | |
parent | a47c58162575187e30ab9610436bb608a89393de (diff) | |
download | mv-2134c91e8f9793d07206febf22d5310132f3bc7e.tar.gz mv-2134c91e8f9793d07206febf22d5310132f3bc7e.tar.bz2 mv-2134c91e8f9793d07206febf22d5310132f3bc7e.tar.xz mv-2134c91e8f9793d07206febf22d5310132f3bc7e.zip |
Add missing explicit keyword in key.h
-rw-r--r-- | src/input/key.h | 2 |
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) |