aboutsummaryrefslogtreecommitdiff
path: root/ltable.h
diff options
context:
space:
mode:
Diffstat (limited to 'ltable.h')
-rw-r--r--ltable.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/ltable.h b/ltable.h
index 1f2ea3ee..4734bd50 100644
--- a/ltable.h
+++ b/ltable.h
@@ -151,13 +151,13 @@ LUAI_FUNC void luaH_set (lua_State *L, Table *t, const TValue *key,
151LUAI_FUNC void luaH_finishset (lua_State *L, Table *t, const TValue *key, 151LUAI_FUNC void luaH_finishset (lua_State *L, Table *t, const TValue *key,
152 TValue *value, int hres); 152 TValue *value, int hres);
153LUAI_FUNC Table *luaH_new (lua_State *L); 153LUAI_FUNC Table *luaH_new (lua_State *L);
154LUAI_FUNC void luaH_resize (lua_State *L, Table *t, unsigned int nasize, 154LUAI_FUNC void luaH_resize (lua_State *L, Table *t, unsigned nasize,
155 unsigned int nhsize); 155 unsigned nhsize);
156LUAI_FUNC void luaH_resizearray (lua_State *L, Table *t, unsigned int nasize); 156LUAI_FUNC void luaH_resizearray (lua_State *L, Table *t, unsigned nasize);
157LUAI_FUNC void luaH_free (lua_State *L, Table *t); 157LUAI_FUNC void luaH_free (lua_State *L, Table *t);
158LUAI_FUNC int luaH_next (lua_State *L, Table *t, StkId key); 158LUAI_FUNC int luaH_next (lua_State *L, Table *t, StkId key);
159LUAI_FUNC lua_Unsigned luaH_getn (Table *t); 159LUAI_FUNC lua_Unsigned luaH_getn (Table *t);
160LUAI_FUNC unsigned int luaH_realasize (const Table *t); 160LUAI_FUNC unsigned luaH_realasize (const Table *t);
161 161
162 162
163#if defined(LUA_DEBUG) 163#if defined(LUA_DEBUG)