diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2024-03-22 14:06:11 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2024-03-22 14:06:11 -0300 |
commit | 9fa63a62682c1353eeabd4575152941fa6f3e70f (patch) | |
tree | 1aad2dd0de78388f6be134399ae4183692ce377f /lstring.h | |
parent | 0593256707ceddb1bc9cd4b25b822a7fbcfedd66 (diff) | |
download | lua-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 'lstring.h')
-rw-r--r-- | lstring.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -43,8 +43,8 @@ | |||
43 | #define eqshrstr(a,b) check_exp((a)->tt == LUA_VSHRSTR, (a) == (b)) | 43 | #define eqshrstr(a,b) check_exp((a)->tt == LUA_VSHRSTR, (a) == (b)) |
44 | 44 | ||
45 | 45 | ||
46 | LUAI_FUNC unsigned int luaS_hash (const char *str, size_t l, unsigned int seed); | 46 | LUAI_FUNC unsigned luaS_hash (const char *str, size_t l, unsigned seed); |
47 | LUAI_FUNC unsigned int luaS_hashlongstr (TString *ts); | 47 | LUAI_FUNC unsigned luaS_hashlongstr (TString *ts); |
48 | LUAI_FUNC int luaS_eqlngstr (TString *a, TString *b); | 48 | LUAI_FUNC int luaS_eqlngstr (TString *a, TString *b); |
49 | LUAI_FUNC void luaS_resize (lua_State *L, int newsize); | 49 | LUAI_FUNC void luaS_resize (lua_State *L, int newsize); |
50 | LUAI_FUNC void luaS_clearcache (global_State *g); | 50 | LUAI_FUNC void luaS_clearcache (global_State *g); |