mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-31 13:18:50 +00:00
DiscIO: Use = default
to define a trivial destructor
This commit is contained in:
parent
f8bf35e6f0
commit
7123fcd19b
6 changed files with 6 additions and 16 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue