From 780c7037225eff7e5cebeebfa372af69c6f8c149 Mon Sep 17 00:00:00 2001 From: ccuser44 <68124053+ccuser44@users.noreply.github.com> Date: Thu, 2 Jan 2025 16:09:53 +0200 Subject: [PATCH] Add support for raw argument in header file --- VM/src/ltable.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VM/src/ltable.h b/VM/src/ltable.h index 021f21bf..0c0690ce 100644 --- a/VM/src/ltable.h +++ b/VM/src/ltable.h @@ -27,7 +27,7 @@ LUAI_FUNC void luaH_resizehash(lua_State* L, Table* t, int nhsize); LUAI_FUNC void luaH_free(lua_State* L, Table* t, struct lua_Page* page); LUAI_FUNC int luaH_next(lua_State* L, Table* t, StkId key); LUAI_FUNC int luaH_getn(Table* t); -LUAI_FUNC Table* luaH_clone(lua_State* L, Table* tt); +LUAI_FUNC Table* luaH_clone(lua_State* L, Table* tt, bool raw); LUAI_FUNC void luaH_clear(Table* tt); #define luaH_setslot(L, t, slot, key) (invalidateTMcache(t), (slot == luaO_nilobject ? luaH_newkey(L, t, key) : cast_to(TValue*, slot)))