diff options
| author | Tillmann Karras <tilkax@gmail.com> | 2014-03-08 01:54:44 +0100 |
|---|---|---|
| committer | Tillmann Karras <tilkax@gmail.com> | 2014-03-09 21:12:01 +0100 |
| commit | f28116b7da6aac6069084596dc4dbf866bdebfd8 (patch) | |
| tree | e105ce4d1a55421d83c27797a896917d6031ee9c /Source/Core/InputCommon/ControllerInterface/ControllerInterface.h | |
| parent | c89f04a7c5256d92b75e9868df9af6cfb7050559 (diff) | |
clang-modernize -add-override
Diffstat (limited to 'Source/Core/InputCommon/ControllerInterface/ControllerInterface.h')
| -rw-r--r-- | Source/Core/InputCommon/ControllerInterface/ControllerInterface.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/Core/InputCommon/ControllerInterface/ControllerInterface.h b/Source/Core/InputCommon/ControllerInterface/ControllerInterface.h index affabafc9b..898fd954fb 100644 --- a/Source/Core/InputCommon/ControllerInterface/ControllerInterface.h +++ b/Source/Core/InputCommon/ControllerInterface/ControllerInterface.h @@ -96,8 +96,8 @@ public: { public: InputReference() : ControlReference(true) {} - ControlState State(const ControlState state); - Device::Control* Detect(const unsigned int ms, Device* const device); + ControlState State(const ControlState state) override; + Device::Control* Detect(const unsigned int ms, Device* const device) override; }; // @@ -109,8 +109,8 @@ public: { public: OutputReference() : ControlReference(false) {} - ControlState State(const ControlState state); - Device::Control* Detect(const unsigned int ms, Device* const device); + ControlState State(const ControlState state) override; + Device::Control* Detect(const unsigned int ms, Device* const device) override; }; ControllerInterface() : m_is_init(false), m_hwnd(NULL) {} |
