lua

A copy of the Lua development repository
Log | Files | Refs | README

commit b85816b9a884cbe4cfd139a8e11ffc28ecead576
parent c954db39241a8b21d7b32b42b87a066b4708f969
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date:   Fri, 21 Oct 2022 09:17:46 -0300

Removed test function 'luaH_isdummy'

It was not being used anywhere.

Diffstat:
Mltable.c | 2--
Mltable.h | 1-
2 files changed, 0 insertions(+), 3 deletions(-)

diff --git 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 @@ -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