mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-14 02:18:18 -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:
@ -50,7 +50,7 @@ public:
|
||||
InitializeServer(port);
|
||||
}
|
||||
|
||||
~DebuggerImpl() {
|
||||
~DebuggerImpl() override {
|
||||
ShutdownServer();
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user