diff options
| author | 2022-03-18 23:44:24 -0400 | |
|---|---|---|
| committer | 2022-03-19 02:23:32 -0400 | |
| commit | ade596121bc834502c63cdedcd8f68a1f490599d (patch) | |
| tree | 9d33e7c491ba8688b9b7441ee850c85ee1fdb9b6 /src/core/crypto/key_manager.h | |
| parent | Merge pull request #8028 from v1993/patch-9 (diff) | |
| download | yuzu-ade596121bc834502c63cdedcd8f68a1f490599d.tar.gz yuzu-ade596121bc834502c63cdedcd8f68a1f490599d.tar.xz yuzu-ade596121bc834502c63cdedcd8f68a1f490599d.zip | |
core: Reduce unused includes
Diffstat (limited to 'src/core/crypto/key_manager.h')
| -rw-r--r-- | src/core/crypto/key_manager.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/core/crypto/key_manager.h b/src/core/crypto/key_manager.h index ac1eb8962..34ea5bbd4 100644 --- a/src/core/crypto/key_manager.h +++ b/src/core/crypto/key_manager.h | |||
| @@ -5,7 +5,6 @@ | |||
| 5 | #pragma once | 5 | #pragma once |
| 6 | 6 | ||
| 7 | #include <array> | 7 | #include <array> |
| 8 | #include <filesystem> | ||
| 9 | #include <map> | 8 | #include <map> |
| 10 | #include <optional> | 9 | #include <optional> |
| 11 | #include <string> | 10 | #include <string> |
| @@ -16,6 +15,10 @@ | |||
| 16 | #include "common/common_types.h" | 15 | #include "common/common_types.h" |
| 17 | #include "core/crypto/partition_data_manager.h" | 16 | #include "core/crypto/partition_data_manager.h" |
| 18 | 17 | ||
| 18 | namespace std::filesystem { | ||
| 19 | class path; | ||
| 20 | } | ||
| 21 | |||
| 19 | namespace Common::FS { | 22 | namespace Common::FS { |
| 20 | class IOFile; | 23 | class IOFile; |
| 21 | } | 24 | } |