mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
Make overriding explicit and remove redundant virtual specifiers on overriding destructors - Core & UnitTests
This commit is contained in:
@ -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; }
|
||||
};
|
||||
|
Reference in New Issue
Block a user