summaryrefslogtreecommitdiff
path: root/Source/Core/InputCommon/ControllerInterface/ControllerInterface.h
diff options
context:
space:
mode:
authorTillmann Karras <tilkax@gmail.com>2014-03-08 01:54:44 +0100
committerTillmann Karras <tilkax@gmail.com>2014-03-09 21:12:01 +0100
commitf28116b7da6aac6069084596dc4dbf866bdebfd8 (patch)
treee105ce4d1a55421d83c27797a896917d6031ee9c /Source/Core/InputCommon/ControllerInterface/ControllerInterface.h
parentc89f04a7c5256d92b75e9868df9af6cfb7050559 (diff)
clang-modernize -add-override
Diffstat (limited to 'Source/Core/InputCommon/ControllerInterface/ControllerInterface.h')
-rw-r--r--Source/Core/InputCommon/ControllerInterface/ControllerInterface.h8
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) {}