DiscIO: Use = default to define a trivial destructor

This commit is contained in:
Dr. Dystopia 2025-04-19 17:43:18 +02:00
commit 7123fcd19b
6 changed files with 6 additions and 16 deletions

View file

@ -159,9 +159,7 @@ VolumeWii::VolumeWii(std::unique_ptr<BlobReader> reader)
}
}
VolumeWii::~VolumeWii()
{
}
VolumeWii::~VolumeWii() = default;
bool VolumeWii::Read(u64 offset, u64 length, u8* buffer, const Partition& partition) const
{