diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2018-06-15 11:14:20 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2018-06-15 11:14:20 -0300 |
commit | 6e600695f8398843a156ce02023f731c6d687ae8 (patch) | |
tree | a3e8ef5078e24b5fbdfdfbd89e949bb6c078b90f /ltable.h | |
parent | 06127927ffb4eb8459523f6c07bf8f22390c31b9 (diff) | |
download | lua-6e600695f8398843a156ce02023f731c6d687ae8.tar.gz lua-6e600695f8398843a156ce02023f731c6d687ae8.tar.bz2 lua-6e600695f8398843a156ce02023f731c6d687ae8.zip |
field 'sizearray' in struct 'Table' changed to 'alimit', which can
be used as a hint for '#t'
Diffstat (limited to 'ltable.h')
-rw-r--r-- | ltable.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ltable.h,v 2.26 2018/02/23 13:13:31 roberto Exp roberto $ | 2 | ** $Id: ltable.h,v 2.27 2018/06/01 16:51:34 roberto Exp roberto $ |
3 | ** Lua tables (hash) | 3 | ** Lua tables (hash) |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -45,6 +45,7 @@ LUAI_FUNC void luaH_resizearray (lua_State *L, Table *t, unsigned int nasize); | |||
45 | LUAI_FUNC void luaH_free (lua_State *L, Table *t); | 45 | LUAI_FUNC void luaH_free (lua_State *L, Table *t); |
46 | LUAI_FUNC int luaH_next (lua_State *L, Table *t, StkId key); | 46 | LUAI_FUNC int luaH_next (lua_State *L, Table *t, StkId key); |
47 | LUAI_FUNC lua_Unsigned luaH_getn (Table *t); | 47 | LUAI_FUNC lua_Unsigned luaH_getn (Table *t); |
48 | LUAI_FUNC unsigned int luaH_realasize (const Table *t); | ||
48 | 49 | ||
49 | 50 | ||
50 | #if defined(LUA_DEBUG) | 51 | #if defined(LUA_DEBUG) |