diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2024-06-27 15:01:57 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2024-06-27 15:01:57 -0300 |
commit | 6ac7219da31df0238dc33c2d4457f69bfe0c1e79 (patch) | |
tree | c9fc124ed998ea39a6222556bb581817791089de /ltable.c | |
parent | 9904c253da9690728710082cfb94654709ab89e7 (diff) | |
download | lua-6ac7219da31df0238dc33c2d4457f69bfe0c1e79.tar.gz lua-6ac7219da31df0238dc33c2d4457f69bfe0c1e79.tar.bz2 lua-6ac7219da31df0238dc33c2d4457f69bfe0c1e79.zip |
'isIT'/'isOT' turned from macros to functions
Diffstat (limited to 'ltable.c')
-rw-r--r-- | ltable.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -278,7 +278,7 @@ static int equalkey (const TValue *k1, const Node *n2, int deadok) { | |||
278 | /* | 278 | /* |
279 | ** Returns the real size of the 'array' array | 279 | ** Returns the real size of the 'array' array |
280 | */ | 280 | */ |
281 | LUAI_FUNC unsigned int luaH_realasize (const Table *t) { | 281 | unsigned int luaH_realasize (const Table *t) { |
282 | if (limitequalsasize(t)) | 282 | if (limitequalsasize(t)) |
283 | return t->alimit; /* this is the size */ | 283 | return t->alimit; /* this is the size */ |
284 | else { | 284 | else { |