mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2026-01-28 13:54:04 +01: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:
@@ -50,7 +50,7 @@ public:
|
||||
InitializeServer(port);
|
||||
}
|
||||
|
||||
~DebuggerImpl() {
|
||||
~DebuggerImpl() override {
|
||||
ShutdownServer();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user