summaryrefslogtreecommitdiff
path: root/Source/Core/DiscIO/Filesystem.cpp
diff options
context:
space:
mode:
authorJosJuice <josjuice@gmail.com>2017-08-02 18:34:44 +0200
committerJosJuice <josjuice@gmail.com>2017-09-15 18:57:05 +0200
commitca36c977d9617ba188907bbe2ff2922fce121972 (patch)
tree9b504be962b3e4ea0dee8db9b718455b68404df5 /Source/Core/DiscIO/Filesystem.cpp
parent38304da947c6b593ef94449894dc018aac633344 (diff)
DiscIO: Remove m_partition and m_volume from FileSystem
The last commit made m_partition unnecessary, and m_volume has been unnecessary ever since the PR that added DiscExtractor.
Diffstat (limited to 'Source/Core/DiscIO/Filesystem.cpp')
-rw-r--r--Source/Core/DiscIO/Filesystem.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/Source/Core/DiscIO/Filesystem.cpp b/Source/Core/DiscIO/Filesystem.cpp
index 4228afdb72..9e5336db5d 100644
--- a/Source/Core/DiscIO/Filesystem.cpp
+++ b/Source/Core/DiscIO/Filesystem.cpp
@@ -3,18 +3,11 @@
// Refer to the license.txt file included.
#include "DiscIO/Filesystem.h"
-#include <memory>
-#include "DiscIO/Volume.h"
namespace DiscIO
{
FileInfo::~FileInfo() = default;
-FileSystem::FileSystem(const Volume* volume, const Partition& partition)
- : m_volume(volume), m_partition(partition)
-{
-}
-
FileSystem::~FileSystem() = default;
} // namespace