summaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
authorameerj <52414509+ameerj@users.noreply.github.com>2022-03-19 06:50:03 +0100
committerameerj <52414509+ameerj@users.noreply.github.com>2022-03-20 07:25:09 +0100
commit866b7c20a8958069a048ffa600155ec3cbd2e5f2 (patch)
tree54191364052f7adc86f4f94afcb45b68186edda2 /src/core
parentyuzu_cmd: Reduce unused includes (diff)
downloadyuzu-866b7c20a8958069a048ffa600155ec3cbd2e5f2.tar
yuzu-866b7c20a8958069a048ffa600155ec3cbd2e5f2.tar.gz
yuzu-866b7c20a8958069a048ffa600155ec3cbd2e5f2.tar.bz2
yuzu-866b7c20a8958069a048ffa600155ec3cbd2e5f2.tar.lz
yuzu-866b7c20a8958069a048ffa600155ec3cbd2e5f2.tar.xz
yuzu-866b7c20a8958069a048ffa600155ec3cbd2e5f2.tar.zst
yuzu-866b7c20a8958069a048ffa600155ec3cbd2e5f2.zip
Diffstat (limited to '')
-rw-r--r--src/core/crypto/key_manager.h5
-rw-r--r--src/core/file_sys/patch_manager.cpp4
2 files changed, 5 insertions, 4 deletions
diff --git a/src/core/crypto/key_manager.h b/src/core/crypto/key_manager.h
index 34ea5bbd4..ac1eb8962 100644
--- a/src/core/crypto/key_manager.h
+++ b/src/core/crypto/key_manager.h
@@ -5,6 +5,7 @@
#pragma once
#include <array>
+#include <filesystem>
#include <map>
#include <optional>
#include <string>
@@ -15,10 +16,6 @@
#include "common/common_types.h"
#include "core/crypto/partition_data_manager.h"
-namespace std::filesystem {
-class path;
-}
-
namespace Common::FS {
class IOFile;
}
diff --git a/src/core/file_sys/patch_manager.cpp b/src/core/file_sys/patch_manager.cpp
index 5882b971b..c4e185757 100644
--- a/src/core/file_sys/patch_manager.cpp
+++ b/src/core/file_sys/patch_manager.cpp
@@ -10,6 +10,10 @@
#include "common/hex_util.h"
#include "common/logging/log.h"
#include "common/settings.h"
+#ifndef _WIN32
+#include "common/string_util.h"
+#endif
+
#include "core/core.h"
#include "core/file_sys/common_funcs.h"
#include "core/file_sys/content_archive.h"