diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-12-23 01:49:45 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-12-23 01:49:45 +0300 |
commit | d5e0c211ced60c77acad477f30ef8039ef05b48b (patch) | |
tree | 82f6e5831ac4e10229a50721f51336422cb20f08 /src | |
parent | 2aa11a7780c0ee8244be91b45dc3c6c9927c1efe (diff) | |
download | plus-d5e0c211ced60c77acad477f30ef8039ef05b48b.tar.gz plus-d5e0c211ced60c77acad477f30ef8039ef05b48b.tar.bz2 plus-d5e0c211ced60c77acad477f30ef8039ef05b48b.tar.xz plus-d5e0c211ced60c77acad477f30ef8039ef05b48b.zip |
Add const attribute to input.
Diffstat (limited to 'src')
-rw-r--r-- | src/input/inputmanager.h | 2 | ||||
-rw-r--r-- | src/input/multitouchmanager.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/input/inputmanager.h b/src/input/inputmanager.h index 09ce00fed..9c11e03f4 100644 --- a/src/input/inputmanager.h +++ b/src/input/inputmanager.h @@ -64,7 +64,7 @@ class InputManager final void callbackNewKey(); - InputFunction &getKey(InputActionT index) A_WARN_UNUSED; + InputFunction &getKey(InputActionT index) A_CONST A_WARN_UNUSED; std::string getKeyValueString(const InputActionT index) const A_WARN_UNUSED; diff --git a/src/input/multitouchmanager.h b/src/input/multitouchmanager.h index ef98a046b..e93a919eb 100644 --- a/src/input/multitouchmanager.h +++ b/src/input/multitouchmanager.h @@ -48,7 +48,7 @@ class MultiTouchManager final A_DELETE_COPY(MultiTouchManager) - void init(); + void init() A_CONST; #ifdef USE_SDL2 void updateFinger(const SDL_Event &event, const bool active); |