diff options
| author | Lioncash <mathew1800@gmail.com> | 2018-09-03 21:58:19 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2018-09-03 22:52:24 -0400 |
| commit | a813c10e1c71318925f2e65f2b0926099485bbc4 (patch) | |
| tree | fc7894ea6e04e565ff4eb29c94b95f8d72a61521 /src/core/file_sys/content_archive.cpp | |
| parent | 1c5636e690ca5844b396f97adc0a094558edc56f (diff) | |
file_sys: Replace includes with forward declarations where applicable
Cuts down on include dependencies, resulting in less files that need to
be rebuilt when certain things are changed.
Diffstat (limited to 'src/core/file_sys/content_archive.cpp')
| -rw-r--r-- | src/core/file_sys/content_archive.cpp | 4 |
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" |
