diff options
| author | Léo Lam <leo@innovatetechnologi.es> | 2018-05-29 14:16:50 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-05-29 14:16:50 +0200 |
| commit | 86bbf540cfabc823b36446267ad7a29dfca06ed0 (patch) | |
| tree | 8c48888ec10f500a2b61183b25f0927d45e28d1c /Source | |
| parent | 62adfaa01c532a57b4b4fe6a42f6c0dc8339fec5 (diff) | |
| parent | c33228e4669cdcc86e46f9d81a48e59b1e0ba26f (diff) | |
Merge pull request #7009 from lioncash/dsp
DSPEmulator: Default destructor in the cpp file
Diffstat (limited to 'Source')
| -rw-r--r-- | Source/Core/Core/DSPEmulator.cpp | 2 | ||||
| -rw-r--r-- | Source/Core/Core/DSPEmulator.h | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/Source/Core/Core/DSPEmulator.cpp b/Source/Core/Core/DSPEmulator.cpp index 477fcb8774..4315764a38 100644 --- a/Source/Core/Core/DSPEmulator.cpp +++ b/Source/Core/Core/DSPEmulator.cpp @@ -9,6 +9,8 @@ #include "Core/HW/DSPHLE/DSPHLE.h" #include "Core/HW/DSPLLE/DSPLLE.h" +DSPEmulator::~DSPEmulator() = default; + std::unique_ptr<DSPEmulator> CreateDSPEmulator(bool hle) { if (hle) diff --git a/Source/Core/Core/DSPEmulator.h b/Source/Core/Core/DSPEmulator.h index 23758ab3ab..c0a1d42d2f 100644 --- a/Source/Core/Core/DSPEmulator.h +++ b/Source/Core/Core/DSPEmulator.h @@ -12,7 +12,7 @@ class PointerWrap; class DSPEmulator { public: - virtual ~DSPEmulator() {} + virtual ~DSPEmulator(); virtual bool IsLLE() = 0; virtual bool Initialize(bool wii, bool dsp_thread) = 0; |
