diff options
| author | Jordan Woyak <jordan.woyak@gmail.com> | 2025-06-07 17:55:14 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-06-07 17:55:14 -0500 |
| commit | 65f3ba70f5a88a25eeb7fef143b8e46093e30a7a (patch) | |
| tree | a550dbcced888ddc1fe57bbe575373d9c0fb3f46 /Source/Core/InputCommon/ControllerInterface/DInput/DInputKeyboardMouse.h | |
| parent | ec52a7496723f9b59c37003ac0296e6a2f7e911c (diff) | |
| parent | f240e20e3f8250d279255fe48ba6ab351b581679 (diff) | |
Merge pull request #13522 from tygyh/Enforce-overriding-destructor-style-Core&UnitTests
Core & UnitTests: Make overriding explicit and remove redundant virtual specifiers on overriding destructors
Diffstat (limited to 'Source/Core/InputCommon/ControllerInterface/DInput/DInputKeyboardMouse.h')
| -rw-r--r-- | Source/Core/InputCommon/ControllerInterface/DInput/DInputKeyboardMouse.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/InputCommon/ControllerInterface/DInput/DInputKeyboardMouse.h b/Source/Core/InputCommon/ControllerInterface/DInput/DInputKeyboardMouse.h index e7187849f6..67721e3301 100644 --- a/Source/Core/InputCommon/ControllerInterface/DInput/DInputKeyboardMouse.h +++ b/Source/Core/InputCommon/ControllerInterface/DInput/DInputKeyboardMouse.h @@ -97,7 +97,7 @@ public: Core::DeviceRemoval UpdateInput() override; KeyboardMouse(const LPDIRECTINPUTDEVICE8 kb_device, const LPDIRECTINPUTDEVICE8 mo_device); - ~KeyboardMouse(); + ~KeyboardMouse() override; std::string GetName() const override; std::string GetSource() const override; |
