소스 검색

Removed test function 'luaH_isdummy'

It was not being used anywhere.
Roberto Ierusalimschy 2 년 전
부모
커밋
b85816b9a8
2개의 변경된 파일0개의 추가작업 그리고 3개의 파일을 삭제
  1. 0 2
      ltable.c
  2. 0 1
      ltable.h

+ 0 - 2
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

+ 0 - 1
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