mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-04-24 05:19:35 -05:00
Filesystem: Make destructors = default
This commit is contained in:
@@ -9,18 +9,14 @@
|
||||
|
||||
namespace DiscIO
|
||||
{
|
||||
FileInfo::~FileInfo()
|
||||
{
|
||||
}
|
||||
FileInfo::~FileInfo() = default;
|
||||
|
||||
FileSystem::FileSystem(const Volume* volume, const Partition& partition)
|
||||
: m_volume(volume), m_partition(partition)
|
||||
{
|
||||
}
|
||||
|
||||
FileSystem::~FileSystem()
|
||||
{
|
||||
}
|
||||
FileSystem::~FileSystem() = default;
|
||||
|
||||
std::unique_ptr<FileSystem> CreateFileSystem(const Volume* volume, const Partition& partition)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user