aboutsummaryrefslogtreecommitdiff
path: root/ltable.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2018-06-15 11:14:20 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2018-06-15 11:14:20 -0300
commit6e600695f8398843a156ce02023f731c6d687ae8 (patch)
treea3e8ef5078e24b5fbdfdfbd89e949bb6c078b90f /ltable.h
parent06127927ffb4eb8459523f6c07bf8f22390c31b9 (diff)
downloadlua-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.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/ltable.h b/ltable.h
index 9b1a3464..ba2dddc8 100644
--- a/ltable.h
+++ b/ltable.h
@@ -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);
45LUAI_FUNC void luaH_free (lua_State *L, Table *t); 45LUAI_FUNC void luaH_free (lua_State *L, Table *t);
46LUAI_FUNC int luaH_next (lua_State *L, Table *t, StkId key); 46LUAI_FUNC int luaH_next (lua_State *L, Table *t, StkId key);
47LUAI_FUNC lua_Unsigned luaH_getn (Table *t); 47LUAI_FUNC lua_Unsigned luaH_getn (Table *t);
48LUAI_FUNC unsigned int luaH_realasize (const Table *t);
48 49
49 50
50#if defined(LUA_DEBUG) 51#if defined(LUA_DEBUG)