summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2021-10-07 19:30:20 +0200
committerMorph <39850852+Morph1984@users.noreply.github.com>2021-10-07 19:32:36 +0200
commitbea7824bd1757e2d67e90fad055b686db04977f7 (patch)
tree0c4475ed604dcd96d0985a6b4a72d8626fb75d06
parentservice: Reduce header include overhead (diff)
downloadyuzu-bea7824bd1757e2d67e90fad055b686db04977f7.tar
yuzu-bea7824bd1757e2d67e90fad055b686db04977f7.tar.gz
yuzu-bea7824bd1757e2d67e90fad055b686db04977f7.tar.bz2
yuzu-bea7824bd1757e2d67e90fad055b686db04977f7.tar.lz
yuzu-bea7824bd1757e2d67e90fad055b686db04977f7.tar.xz
yuzu-bea7824bd1757e2d67e90fad055b686db04977f7.tar.zst
yuzu-bea7824bd1757e2d67e90fad055b686db04977f7.zip
-rw-r--r--src/core/hle/kernel/hle_ipc.cpp1
-rw-r--r--src/core/hle/kernel/hle_ipc.h2
2 files changed, 2 insertions, 1 deletions
diff --git a/src/core/hle/kernel/hle_ipc.cpp b/src/core/hle/kernel/hle_ipc.cpp
index ca68fc325..cee96dd9b 100644
--- a/src/core/hle/kernel/hle_ipc.cpp
+++ b/src/core/hle/kernel/hle_ipc.cpp
@@ -15,6 +15,7 @@
#include "common/logging/log.h"
#include "core/hle/ipc_helpers.h"
#include "core/hle/kernel/hle_ipc.h"
+#include "core/hle/kernel/k_auto_object.h"
#include "core/hle/kernel/k_handle_table.h"
#include "core/hle/kernel/k_process.h"
#include "core/hle/kernel/k_readable_event.h"
diff --git a/src/core/hle/kernel/hle_ipc.h b/src/core/hle/kernel/hle_ipc.h
index a61870f8b..55e6fb9f7 100644
--- a/src/core/hle/kernel/hle_ipc.h
+++ b/src/core/hle/kernel/hle_ipc.h
@@ -17,7 +17,6 @@
#include "common/concepts.h"
#include "common/swap.h"
#include "core/hle/ipc.h"
-#include "core/hle/kernel/k_auto_object.h"
#include "core/hle/kernel/svc_common.h"
union ResultCode;
@@ -38,6 +37,7 @@ namespace Kernel {
class Domain;
class HLERequestContext;
+class KAutoObject;
class KernelCore;
class KHandleTable;
class KProcess;