From 93a82661f04b263ba1497a33eadeb0a236e99f08 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20Lam?= Date: Fri, 1 Jan 2021 12:37:51 +0100 Subject: [PATCH] ksys: Break an include cycle BaseProcHandle was including BaseProc, which was including BaseProcHandle, ... --- src/KingSystem/ActorSystem/actBaseProcHandle.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/KingSystem/ActorSystem/actBaseProcHandle.h b/src/KingSystem/ActorSystem/actBaseProcHandle.h index c0a74ee0..a1481d75 100644 --- a/src/KingSystem/ActorSystem/actBaseProcHandle.h +++ b/src/KingSystem/ActorSystem/actBaseProcHandle.h @@ -1,7 +1,6 @@ #pragma once #include -#include "KingSystem/ActorSystem/actBaseProc.h" #include "KingSystem/ActorSystem/actBaseProcUnit.h" #include "KingSystem/Utils/Types.h" @@ -27,4 +26,4 @@ private: }; KSYS_CHECK_SIZE_NX150(BaseProcHandle, 0x10); -} // namespace ksys::act \ No newline at end of file +} // namespace ksys::act