diff options
| author | Lioncash <mathew1800@gmail.com> | 2019-05-27 10:19:49 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2019-05-27 10:19:51 -0400 |
| commit | 52eb2d0d826fddd2c0248ad753ee629419277936 (patch) | |
| tree | 266ff4075d8bdc291f43072357f3ccaad0a88208 /Source/Core/DiscIO/VolumeVerifier.cpp | |
| parent | 0ccaa2b5d65234acc10009fa3a8d83071a8ebcac (diff) | |
DiscIO/VolumeVerifier: Default destructor within the cpp file
Given the volume verifier has quite a few non-trivial object within it,
it's best to default the destructor within the cpp file to prevent
inlining complex destruction logic elsewhere, while also making it nicer
if a forward-declared type is ever used in a member variable.
Diffstat (limited to 'Source/Core/DiscIO/VolumeVerifier.cpp')
| -rw-r--r-- | Source/Core/DiscIO/VolumeVerifier.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/Core/DiscIO/VolumeVerifier.cpp b/Source/Core/DiscIO/VolumeVerifier.cpp index 39061283da..653cbbaf9c 100644 --- a/Source/Core/DiscIO/VolumeVerifier.cpp +++ b/Source/Core/DiscIO/VolumeVerifier.cpp @@ -54,6 +54,8 @@ VolumeVerifier::VolumeVerifier(const Volume& volume, Hashes<bool> hashes_to_calc { } +VolumeVerifier::~VolumeVerifier() = default; + void VolumeVerifier::Start() { ASSERT(!m_started); |
