diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-12-12 18:26:16 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-12-12 18:26:16 +0300 |
commit | 67638eeec5267977940dce29c5a94ce4d093ed69 (patch) | |
tree | 2bacbaba1379e57c846929ef31e949fb2bd7f946 /src/input/joystick.h | |
parent | 3308da97a29b1170e720b4341456bb39869bed24 (diff) | |
download | plus-67638eeec5267977940dce29c5a94ce4d093ed69.tar.gz plus-67638eeec5267977940dce29c5a94ce4d093ed69.tar.bz2 plus-67638eeec5267977940dce29c5a94ce4d093ed69.tar.xz plus-67638eeec5267977940dce29c5a94ce4d093ed69.zip |
Add constexpr and noexcept into some methods.
Diffstat (limited to 'src/input/joystick.h')
-rw-r--r-- | src/input/joystick.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input/joystick.h b/src/input/joystick.h index ee4b9de20..e302de53e 100644 --- a/src/input/joystick.h +++ b/src/input/joystick.h @@ -79,7 +79,7 @@ class Joystick final void setNumber(const int n); - static void setEnabled(const bool enabled) + constexpr static void setEnabled(const bool enabled) noexcept2 { mEnabled = enabled; } static void getNames(std::vector <std::string> &names); |