summaryrefslogtreecommitdiff
path: root/src/core/crypto/key_manager.cpp
diff options
context:
space:
mode:
authorGravatar Lioncash2018-09-03 21:58:19 -0400
committerGravatar Lioncash2018-09-03 22:52:24 -0400
commita813c10e1c71318925f2e65f2b0926099485bbc4 (patch)
treefc7894ea6e04e565ff4eb29c94b95f8d72a61521 /src/core/crypto/key_manager.cpp
parentMerge pull request #1231 from lioncash/global (diff)
downloadyuzu-a813c10e1c71318925f2e65f2b0926099485bbc4.tar.gz
yuzu-a813c10e1c71318925f2e65f2b0926099485bbc4.tar.xz
yuzu-a813c10e1c71318925f2e65f2b0926099485bbc4.zip
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/crypto/key_manager.cpp')
-rw-r--r--src/core/crypto/key_manager.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/crypto/key_manager.cpp b/src/core/crypto/key_manager.cpp
index 0b6c07de8..f768533da 100644
--- a/src/core/crypto/key_manager.cpp
+++ b/src/core/crypto/key_manager.cpp
@@ -8,12 +8,15 @@
8#include <locale> 8#include <locale>
9#include <sstream> 9#include <sstream>
10#include <string_view> 10#include <string_view>
11#include <tuple>
12#include <vector>
11#include "common/common_paths.h" 13#include "common/common_paths.h"
12#include "common/file_util.h" 14#include "common/file_util.h"
13#include "common/hex_util.h" 15#include "common/hex_util.h"
14#include "common/logging/log.h" 16#include "common/logging/log.h"
15#include "core/crypto/aes_util.h" 17#include "core/crypto/aes_util.h"
16#include "core/crypto/key_manager.h" 18#include "core/crypto/key_manager.h"
19#include "core/loader/loader.h"
17#include "core/settings.h" 20#include "core/settings.h"
18 21
19namespace Core::Crypto { 22namespace Core::Crypto {