mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
Common/DebugInterface: Default virtual destructor
While we're at it, we can also default the constructor and destructor of inheriting classes in their respective cpp file to prevent the construction and destruction of non-trivial types being inlined into other regions of code.
This commit is contained in:
@ -18,7 +18,7 @@ namespace Common
|
||||
class DebugInterface
|
||||
{
|
||||
protected:
|
||||
virtual ~DebugInterface() {}
|
||||
virtual ~DebugInterface() = default;
|
||||
|
||||
public:
|
||||
// Watches
|
||||
|
Reference in New Issue
Block a user