summaryrefslogtreecommitdiff
path: root/Source/Core/DiscIO/Filesystem.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Core/DiscIO/Filesystem.cpp')
-rw-r--r--Source/Core/DiscIO/Filesystem.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/Source/Core/DiscIO/Filesystem.cpp b/Source/Core/DiscIO/Filesystem.cpp
index a955c1f402..6171c3004f 100644
--- a/Source/Core/DiscIO/Filesystem.cpp
+++ b/Source/Core/DiscIO/Filesystem.cpp
@@ -9,15 +9,15 @@
namespace DiscIO
{
-FileSystem::FileSystem(const Volume* _rVolume, const Partition& partition)
- : m_rVolume(_rVolume), m_partition(partition)
-{
-}
+FileInfo::~FileInfo() = default;
-FileSystem::~FileSystem()
+FileSystem::FileSystem(const Volume* volume, const Partition& partition)
+ : m_volume(volume), m_partition(partition)
{
}
+FileSystem::~FileSystem() = default;
+
std::unique_ptr<FileSystem> CreateFileSystem(const Volume* volume, const Partition& partition)
{
if (!volume)