mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-24 22:34:54 +00:00
CPUCoreBase: Default the virtual destructor
This commit is contained in:
parent
5369d3c9f1
commit
c738ddc4aa
1 changed files with 1 additions and 1 deletions
|
@ -7,7 +7,7 @@
|
|||
class CPUCoreBase
|
||||
{
|
||||
public:
|
||||
virtual ~CPUCoreBase() {}
|
||||
virtual ~CPUCoreBase() = default;
|
||||
virtual void Init() = 0;
|
||||
virtual void Shutdown() = 0;
|
||||
virtual void ClearCache() = 0;
|
||||
|
|
Loading…
Add table
Reference in a new issue