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:
parent
de2f2e5140
commit
69511aed3d
3 changed files with 6 additions and 2 deletions
|
@ -50,7 +50,7 @@ public:
|
|||
InitializeServer(port);
|
||||
}
|
||||
|
||||
~DebuggerImpl() {
|
||||
~DebuggerImpl() override {
|
||||
ShutdownServer();
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue