From 5604a95477d207d7490540d66f1e15cce006abcd Mon Sep 17 00:00:00 2001 From: aakmaev Date: Mon, 28 Apr 2025 13:08:59 +0300 Subject: [PATCH] Fix file include Signed-off-by: Akmaev Aleksey --- ets2panda/compiler/core/ETSCompiler.cpp | 1 + ets2panda/compiler/core/ETSGen.cpp | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/ets2panda/compiler/core/ETSCompiler.cpp b/ets2panda/compiler/core/ETSCompiler.cpp index 76f279b37..648ce8740 100644 --- a/ets2panda/compiler/core/ETSCompiler.cpp +++ b/ets2panda/compiler/core/ETSCompiler.cpp @@ -24,6 +24,7 @@ #include "checker/ETSchecker.h" #include "checker/types/ets/etsDynamicFunctionType.h" #include "checker/types/ets/etsTupleType.h" +#include "ETSGen-inl.h" namespace ark::es2panda::compiler { diff --git a/ets2panda/compiler/core/ETSGen.cpp b/ets2panda/compiler/core/ETSGen.cpp index 6c43a31ff..0c8db782a 100644 --- a/ets2panda/compiler/core/ETSGen.cpp +++ b/ets2panda/compiler/core/ETSGen.cpp @@ -13,7 +13,6 @@ * limitations under the License. */ -#include "ETSGen.h" #include "ETSGen-inl.h" #include "generated/signatures.h" -- Gitee