From 9d0da620305049f200aa10da1e352c7d5f041e3f Mon Sep 17 00:00:00 2001 From: ccuser44 <68124053+ccuser44@users.noreply.github.com> Date: Thu, 2 Jan 2025 16:14:55 +0200 Subject: [PATCH] Fix definition for codebuilder --- CodeGen/src/NativeState.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CodeGen/src/NativeState.h b/CodeGen/src/NativeState.h index 941db252..7b42deb8 100644 --- a/CodeGen/src/NativeState.h +++ b/CodeGen/src/NativeState.h @@ -49,7 +49,7 @@ struct NativeContext int (*luaH_getn)(Table* t) = nullptr; Table* (*luaH_new)(lua_State* L, int narray, int lnhash) = nullptr; - Table* (*luaH_clone)(lua_State* L, Table* tt) = nullptr; + Table* (*luaH_clone)(lua_State* L, Table* tt, bool raw) = nullptr; void (*luaH_resizearray)(lua_State* L, Table* t, int nasize) = nullptr; TValue* (*luaH_setnum)(lua_State* L, Table* t, int key);