mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
CPUCoreBase: Default the virtual destructor
This commit is contained in:
@ -7,7 +7,7 @@
|
||||
class CPUCoreBase
|
||||
{
|
||||
public:
|
||||
virtual ~CPUCoreBase() {}
|
||||
virtual ~CPUCoreBase() = default;
|
||||
virtual void Init() = 0;
|
||||
virtual void Shutdown() = 0;
|
||||
virtual void ClearCache() = 0;
|
||||
|
Reference in New Issue
Block a user