diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2021-10-07 19:30:20 +0200 |
---|---|---|
committer | Morph <39850852+Morph1984@users.noreply.github.com> | 2021-10-07 19:32:36 +0200 |
commit | bea7824bd1757e2d67e90fad055b686db04977f7 (patch) | |
tree | 0c4475ed604dcd96d0985a6b4a72d8626fb75d06 | |
parent | service: Reduce header include overhead (diff) | |
download | yuzu-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 |
Diffstat (limited to '')
-rw-r--r-- | src/core/hle/kernel/hle_ipc.cpp | 1 | ||||
-rw-r--r-- | src/core/hle/kernel/hle_ipc.h | 2 |
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; |