diff options
| author | JosJuice <josjuice@gmail.com> | 2017-06-13 23:05:30 +0200 |
|---|---|---|
| committer | JosJuice <josjuice@gmail.com> | 2017-06-14 15:26:04 +0200 |
| commit | 583406d900bd0ca9111135c6a9e526aed67e8322 (patch) | |
| tree | 5093d95bd70822f11a7225cfeff5a8c78b7c1f15 /Source/Core/DiscIO/FileSystemGCWii.cpp | |
| parent | 0b7d2e7c688a1e5e45c6d53fdcc89e4663e6d299 (diff) | |
Filesystem: Make destructors = default
Diffstat (limited to 'Source/Core/DiscIO/FileSystemGCWii.cpp')
| -rw-r--r-- | Source/Core/DiscIO/FileSystemGCWii.cpp | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/Source/Core/DiscIO/FileSystemGCWii.cpp b/Source/Core/DiscIO/FileSystemGCWii.cpp index 62e29b2b5c..09a171677d 100644 --- a/Source/Core/DiscIO/FileSystemGCWii.cpp +++ b/Source/Core/DiscIO/FileSystemGCWii.cpp @@ -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 { |
