mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 11:49:06 +00:00
Filesystem: Make destructors = default
This commit is contained in:
parent
0b7d2e7c68
commit
583406d900
3 changed files with 5 additions and 13 deletions
|
@ -45,9 +45,7 @@ FileInfoGCWii::FileInfoGCWii(const FileInfoGCWii& file_info, u32 index)
|
|||
{
|
||||
}
|
||||
|
||||
FileInfoGCWii::~FileInfoGCWii()
|
||||
{
|
||||
}
|
||||
FileInfoGCWii::~FileInfoGCWii() = default;
|
||||
|
||||
uintptr_t FileInfoGCWii::GetAddress() const
|
||||
{
|
||||
|
@ -252,9 +250,7 @@ FileSystemGCWii::FileSystemGCWii(const Volume* volume, const Partition& partitio
|
|||
m_valid = m_root.IsValid(fst_size, m_root);
|
||||
}
|
||||
|
||||
FileSystemGCWii::~FileSystemGCWii()
|
||||
{
|
||||
}
|
||||
FileSystemGCWii::~FileSystemGCWii() = default;
|
||||
|
||||
const FileInfo& FileSystemGCWii::GetRoot() const
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue