mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 22:00:39 -06:00
DiscIO: Use = default
to define a trivial destructor
This commit is contained in:
@ -61,7 +61,7 @@ std::string GetName(BlobType blob_type, bool translate);
|
||||
class BlobReader
|
||||
{
|
||||
public:
|
||||
virtual ~BlobReader() {}
|
||||
virtual ~BlobReader() = default;
|
||||
|
||||
virtual BlobType GetBlobType() const = 0;
|
||||
virtual std::unique_ptr<BlobReader> CopyReader() const = 0;
|
||||
|
Reference in New Issue
Block a user