Removed test function 'luaH_isdummy'

It was not being used anywhere.
This commit is contained in:
Roberto Ierusalimschy 2022-10-21 09:18:13 -03:00
parent c954db3924
commit b85816b9a8
2 changed files with 0 additions and 3 deletions

View File

@ -975,6 +975,4 @@ Node *luaH_mainposition (const Table *t, const TValue *key) {
return mainpositionTV(t, key);
}
int luaH_isdummy (const Table *t) { return isdummy(t); }
#endif

View File

@ -59,7 +59,6 @@ LUAI_FUNC unsigned int luaH_realasize (const Table *t);
#if defined(LUA_DEBUG)
LUAI_FUNC Node *luaH_mainposition (const Table *t, const TValue *key);
LUAI_FUNC int luaH_isdummy (const Table *t);
#endif