From b85816b9a884cbe4cfd139a8e11ffc28ecead576 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Fri, 21 Oct 2022 09:18:13 -0300 Subject: Removed test function 'luaH_isdummy' It was not being used anywhere. --- ltable.c | 2 -- ltable.h | 1 - 2 files changed, 3 deletions(-) diff --git a/ltable.c b/ltable.c index d03e7486..cc7993e0 100644 --- a/ltable.c +++ b/ltable.c @@ -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 diff --git a/ltable.h b/ltable.h index 7bbbcb21..75dd9e26 100644 --- a/ltable.h +++ b/ltable.h @@ -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 -- cgit v1.2.1