diff options
| author | 2018-09-03 21:58:19 -0400 | |
|---|---|---|
| committer | 2018-09-03 22:52:24 -0400 | |
| commit | a813c10e1c71318925f2e65f2b0926099485bbc4 (patch) | |
| tree | fc7894ea6e04e565ff4eb29c94b95f8d72a61521 /src/core/crypto/key_manager.h | |
| parent | Merge pull request #1231 from lioncash/global (diff) | |
| download | yuzu-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.h | 9 |
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 | |
| 14 | namespace Loader { | ||
| 15 | enum class ResultStatus : u16; | ||
| 16 | } | ||
| 16 | 17 | ||
| 17 | namespace Core::Crypto { | 18 | namespace Core::Crypto { |
| 18 | 19 | ||