mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-13 15:48:09 -05:00
core/debugger: Define defaulted virtual destructors
Resolves an MSVC warning where a virtual destructor is not defined in the base class with virtual functions.
This commit is contained in:
@ -19,7 +19,7 @@ class System;
|
||||
class GDBStub : public DebuggerFrontend {
|
||||
public:
|
||||
explicit GDBStub(DebuggerBackend& backend, Core::System& system);
|
||||
~GDBStub();
|
||||
~GDBStub() override;
|
||||
|
||||
void Connected() override;
|
||||
void Stopped(Kernel::KThread* thread) override;
|
||||
|
Reference in New Issue
Block a user