summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/content_archive.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-09-04 17:51:54 +0200
committerGitHub <noreply@github.com>2018-09-04 17:51:54 +0200
commit8ec1e168672a0e3798eb45680e0fed59f3775645 (patch)
treec7358ce2a72143b4fe1704c889716075cce58f98 /src/core/file_sys/content_archive.cpp
parentMerge pull request #1236 from degasus/microprofile (diff)
parentfile_sys: Replace includes with forward declarations where applicable (diff)
downloadyuzu-8ec1e168672a0e3798eb45680e0fed59f3775645.tar
yuzu-8ec1e168672a0e3798eb45680e0fed59f3775645.tar.gz
yuzu-8ec1e168672a0e3798eb45680e0fed59f3775645.tar.bz2
yuzu-8ec1e168672a0e3798eb45680e0fed59f3775645.tar.lz
yuzu-8ec1e168672a0e3798eb45680e0fed59f3775645.tar.xz
yuzu-8ec1e168672a0e3798eb45680e0fed59f3775645.tar.zst
yuzu-8ec1e168672a0e3798eb45680e0fed59f3775645.zip
Diffstat (limited to 'src/core/file_sys/content_archive.cpp')
-rw-r--r--src/core/file_sys/content_archive.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/file_sys/content_archive.cpp b/src/core/file_sys/content_archive.cpp
index e8b5d6ece..7cfb6f36b 100644
--- a/src/core/file_sys/content_archive.cpp
+++ b/src/core/file_sys/content_archive.cpp
@@ -3,12 +3,16 @@
// Refer to the license.txt file included.
#include <algorithm>
+#include <cstring>
#include <utility>
+
#include <boost/optional.hpp>
+
#include "common/logging/log.h"
#include "core/crypto/aes_util.h"
#include "core/crypto/ctr_encryption_layer.h"
#include "core/file_sys/content_archive.h"
+#include "core/file_sys/partition_filesystem.h"
#include "core/file_sys/romfs.h"
#include "core/file_sys/vfs_offset.h"
#include "core/loader/loader.h"