Fix definition for codebuilder

This commit is contained in:
ccuser44 2025-01-02 16:14:55 +02:00 committed by GitHub
parent a72b6b2d47
commit 9d0da62030
Signed by: DevComp
GPG key ID: B5690EEEBB952194

View file

@ -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);