diff options
| author | Dr. Dystopia <jonis9898@hotmail.com> | 2025-04-16 09:17:46 +0200 |
|---|---|---|
| committer | Dr. Dystopia <jonis9898@hotmail.com> | 2025-05-01 15:00:37 +0200 |
| commit | f240e20e3f8250d279255fe48ba6ab351b581679 (patch) | |
| tree | 3fb93d33a59df696f88c5a6af7e57fb8e33678a1 /Source/Core/InputCommon/ControllerInterface/CoreDevice.h | |
| parent | 0b0151770a2a087063775e654e1b6208033a9c21 (diff) | |
Make overriding explicit and remove redundant virtual specifiers on overriding destructors - Core & UnitTests
Diffstat (limited to 'Source/Core/InputCommon/ControllerInterface/CoreDevice.h')
| -rw-r--r-- | Source/Core/InputCommon/ControllerInterface/CoreDevice.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/InputCommon/ControllerInterface/CoreDevice.h b/Source/Core/InputCommon/ControllerInterface/CoreDevice.h index f30dd4f405..95f9f5b88e 100644 --- a/Source/Core/InputCommon/ControllerInterface/CoreDevice.h +++ b/Source/Core/InputCommon/ControllerInterface/CoreDevice.h @@ -117,7 +117,7 @@ public: class Output : public Control { public: - virtual ~Output() = default; + ~Output() override = default; virtual void SetState(ControlState state) = 0; Output* ToOutput() override { return this; } }; |
