mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-13 00:58:29 +02:00
clang-modernize -add-override
This commit is contained in:
@ -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) {}
|
||||
|
Reference in New Issue
Block a user