mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-11 02:28:51 +00:00
Filesystem: Make destructors = default
This commit is contained in:
parent
0b7d2e7c68
commit
583406d900
3 changed files with 5 additions and 13 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue