mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-03 02:10:53 +01:00
Add support for raw argument in header file
This commit is contained in:
parent
ba4b95ac5f
commit
780c703722
1 changed files with 1 additions and 1 deletions
|
@ -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)))
|
||||
|
|
Loading…
Add table
Reference in a new issue