diff options
| author | Leo Lam <leolino.lam@gmail.com> | 2017-06-15 21:24:42 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-06-15 21:24:42 +0200 |
| commit | 09c0a3caaff4961dc33df35cbf6baf09b94d56ec (patch) | |
| tree | 24bc5a9610afab5b95dd5930d8266c9288428510 /Source/Core/DiscIO/Filesystem.cpp | |
| parent | 335f54cac6ed15148fb7f959ccee9d63b583ea32 (diff) | |
| parent | 583406d900bd0ca9111135c6a9e526aed67e8322 (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.cpp | 10 |
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) |
