summaryrefslogtreecommitdiff
path: root/Source/Core/DiscIO/Filesystem.cpp
diff options
context:
space:
mode:
authorLeo Lam <leolino.lam@gmail.com>2017-06-15 21:24:42 +0200
committerGitHub <noreply@github.com>2017-06-15 21:24:42 +0200
commit09c0a3caaff4961dc33df35cbf6baf09b94d56ec (patch)
tree24bc5a9610afab5b95dd5930d8266c9288428510 /Source/Core/DiscIO/Filesystem.cpp
parent335f54cac6ed15148fb7f959ccee9d63b583ea32 (diff)
parent583406d900bd0ca9111135c6a9e526aed67e8322 (diff)
Merge pull request #2820 from JosJuice/filesystem
Filesystem redesign and performance improvements
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)