aboutsummaryrefslogtreecommitdiff
path: root/src/core/file_sys/sdmc_factory.cpp
diff options
context:
space:
mode:
authorZach Hilman <zachhilman@gmail.com>2018-08-24 22:15:32 -0400
committerZach Hilman <zachhilman@gmail.com>2018-08-24 22:15:32 -0400
commit6314a799aa7e20789562d2e877949dfebb6194ce (patch)
treef5bd5cdd7e5804e7416abf75ab411c0be69b97e6 /src/core/file_sys/sdmc_factory.cpp
parentd1a6dd61d1e70d41cf7bc0dbf3a199cb21d8fdbd (diff)
file_sys/crypto: Fix missing/unnecessary includes
Diffstat (limited to 'src/core/file_sys/sdmc_factory.cpp')
-rw-r--r--src/core/file_sys/sdmc_factory.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/file_sys/sdmc_factory.cpp b/src/core/file_sys/sdmc_factory.cpp
index e4df5c4d0..d66a9c9a4 100644
--- a/src/core/file_sys/sdmc_factory.cpp
+++ b/src/core/file_sys/sdmc_factory.cpp
@@ -16,6 +16,8 @@ SDMCFactory::SDMCFactory(VirtualDir dir_)
return std::make_shared<NAX>(file, id)->GetDecrypted();
})) {}
+SDMCFactory::~SDMCFactory() = default;
+
ResultVal<VirtualDir> SDMCFactory::Open() {
return MakeResult<VirtualDir>(dir);
}