summaryrefslogtreecommitdiff
path: root/src/input
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2019-09-30 03:27:33 +0300
committerAndrei Karas <akaras@inbox.ru>2019-09-30 03:30:11 +0300
commitbf9fc1de4c53a88a28be48dbf7cf4795199442d4 (patch)
tree46018d5b85c669961fb2fe6ab8af06f432139999 /src/input
parentfdf8230a80fa418e4b46dc489e5b2dda7901b55c (diff)
downloadplus-bf9fc1de4c53a88a28be48dbf7cf4795199442d4.tar.gz
plus-bf9fc1de4c53a88a28be48dbf7cf4795199442d4.tar.bz2
plus-bf9fc1de4c53a88a28be48dbf7cf4795199442d4.tar.xz
plus-bf9fc1de4c53a88a28be48dbf7cf4795199442d4.zip
Add missing static keywords
Diffstat (limited to 'src/input')
-rw-r--r--src/input/inputmanager.cpp2
-rw-r--r--src/input/inputmanager.h5
2 files changed, 2 insertions, 5 deletions
diff --git a/src/input/inputmanager.cpp b/src/input/inputmanager.cpp
index 1cb5281a9..b470b66ac 100644
--- a/src/input/inputmanager.cpp
+++ b/src/input/inputmanager.cpp
@@ -1061,7 +1061,6 @@ InputActionT InputManager::getActionByKey(const SDL_Event &restrict event)
}
InputActionT InputManager::getActionByConfigField(const std::string &field)
- const restrict2
{
for (int i = 0; i < CAST_S32(InputAction::TOTAL); i ++)
{
@@ -1073,7 +1072,6 @@ InputActionT InputManager::getActionByConfigField(const std::string &field)
}
void InputManager::addChatCommands(std::list<std::string> &restrict arr)
- restrict
{
const int sz = CAST_S32(InputAction::TOTAL);
for (int i = 0; i < sz; i++)
diff --git a/src/input/inputmanager.h b/src/input/inputmanager.h
index dfbe8639a..f1eda8aae 100644
--- a/src/input/inputmanager.h
+++ b/src/input/inputmanager.h
@@ -143,8 +143,7 @@ class InputManager final
InputActionT getActionByKey(const SDL_Event &restrict event)
const restrict2 A_WARN_UNUSED;
- InputActionT getActionByConfigField(const std::string &field)
- const restrict2 A_WARN_UNUSED;
+ static InputActionT getActionByConfigField(const std::string &field);
void executeAction(const InputActionT keyNum) restrict2;
@@ -160,7 +159,7 @@ class InputManager final
const std::string &restrict args,
ChatTab *restrict const tab) restrict2;
- void addChatCommands(std::list<std::string> &restrict arr) restrict;
+ static void addChatCommands(std::list<std::string> &restrict arr);
protected:
void resetKey(const InputActionT i) restrict2;