aboutsummaryrefslogtreecommitdiff
path: root/ltable.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2024-03-22 14:06:11 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2024-03-22 14:06:11 -0300
commit9fa63a62682c1353eeabd4575152941fa6f3e70f (patch)
tree1aad2dd0de78388f6be134399ae4183692ce377f /ltable.h
parent0593256707ceddb1bc9cd4b25b822a7fbcfedd66 (diff)
downloadlua-9fa63a62682c1353eeabd4575152941fa6f3e70f.tar.gz
lua-9fa63a62682c1353eeabd4575152941fa6f3e70f.tar.bz2
lua-9fa63a62682c1353eeabd4575152941fa6f3e70f.zip
Some 'unsigned int' changed to 'unsigned'
'unsigned int' is too long sometimes. (We already write 'long' instead of 'long int'...)
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)