summaryrefslogtreecommitdiff
path: root/src/core/crypto/key_manager.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2018-09-04 11:51:54 -0400
committerGravatar GitHub2018-09-04 11:51:54 -0400
commit8ec1e168672a0e3798eb45680e0fed59f3775645 (patch)
treec7358ce2a72143b4fe1704c889716075cce58f98 /src/core/crypto/key_manager.cpp
parentMerge pull request #1236 from degasus/microprofile (diff)
parentfile_sys: Replace includes with forward declarations where applicable (diff)
downloadyuzu-8ec1e168672a0e3798eb45680e0fed59f3775645.tar.gz
yuzu-8ec1e168672a0e3798eb45680e0fed59f3775645.tar.xz
yuzu-8ec1e168672a0e3798eb45680e0fed59f3775645.zip
Merge pull request #1235 from lioncash/forward-decl
file_sys: Replace includes with forward declarations where applicable
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 {