mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-09-09 20:06:17 -05: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