summaryrefslogtreecommitdiff
path: root/Source/Core/DiscIO/VolumeGC.cpp
diff options
context:
space:
mode:
authorTilka <tilkax@gmail.com>2025-04-20 22:32:12 +0100
committerGitHub <noreply@github.com>2025-04-20 22:32:12 +0100
commit9504916f72190123b16ef620b1ab17fcdebb4886 (patch)
tree611444bba9424ede4fcae1fa50166e9d06e3f273 /Source/Core/DiscIO/VolumeGC.cpp
parent0a52140145bd788ee61768e08c47a469844d9195 (diff)
parent7123fcd19b9244e823dd3c0a259c0ef9a7a78e1c (diff)
Merge pull request #13538 from tygyh/DiscIO-Use-default-to-define-a-trivial-destructor
DiscIO: Use `= default` to define a trivial destructor
Diffstat (limited to 'Source/Core/DiscIO/VolumeGC.cpp')
-rw-r--r--Source/Core/DiscIO/VolumeGC.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/Source/Core/DiscIO/VolumeGC.cpp b/Source/Core/DiscIO/VolumeGC.cpp
index 1517207f95..8a95e0bb31 100644
--- a/Source/Core/DiscIO/VolumeGC.cpp
+++ b/Source/Core/DiscIO/VolumeGC.cpp
@@ -41,9 +41,7 @@ VolumeGC::VolumeGC(std::unique_ptr<BlobReader> reader) : m_reader(std::move(read
m_converted_banner = [this] { return LoadBannerFile(); };
}
-VolumeGC::~VolumeGC()
-{
-}
+VolumeGC::~VolumeGC() = default;
bool VolumeGC::Read(u64 offset, u64 length, u8* buffer, const Partition& partition) const
{