summaryrefslogtreecommitdiff
path: root/Source/Core/DiscIO/Filesystem.cpp
diff options
context:
space:
mode:
authorJosJuice <josjuice@gmail.com>2017-06-13 23:05:30 +0200
committerJosJuice <josjuice@gmail.com>2017-06-14 15:26:04 +0200
commit583406d900bd0ca9111135c6a9e526aed67e8322 (patch)
tree5093d95bd70822f11a7225cfeff5a8c78b7c1f15 /Source/Core/DiscIO/Filesystem.cpp
parent0b7d2e7c688a1e5e45c6d53fdcc89e4663e6d299 (diff)
Filesystem: Make destructors = default
Diffstat (limited to 'Source/Core/DiscIO/Filesystem.cpp')
-rw-r--r--Source/Core/DiscIO/Filesystem.cpp8
1 files changed, 2 insertions, 6 deletions
diff --git a/Source/Core/DiscIO/Filesystem.cpp b/Source/Core/DiscIO/Filesystem.cpp
index 807fb6c3eb..6171c3004f 100644
--- a/Source/Core/DiscIO/Filesystem.cpp
+++ b/Source/Core/DiscIO/Filesystem.cpp
@@ -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)
{