summaryrefslogtreecommitdiff
path: root/src/core/crypto/key_manager.h
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.h
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.h')
-rw-r--r--src/core/crypto/key_manager.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/core/crypto/key_manager.h b/src/core/crypto/key_manager.h
index 7ca3e6cbc..bf51bf31f 100644
--- a/src/core/crypto/key_manager.h
+++ b/src/core/crypto/key_manager.h
@@ -6,13 +6,14 @@
6 6
7#include <array> 7#include <array>
8#include <string> 8#include <string>
9#include <string_view>
10#include <type_traits>
11#include <vector>
12#include <boost/container/flat_map.hpp> 9#include <boost/container/flat_map.hpp>
10#include <boost/optional.hpp>
13#include <fmt/format.h> 11#include <fmt/format.h>
14#include "common/common_types.h" 12#include "common/common_types.h"
15#include "core/loader/loader.h" 13
14namespace Loader {
15enum class ResultStatus : u16;
16}
16 17
17namespace Core::Crypto { 18namespace Core::Crypto {
18 19