From 46c3587a6feb28e1ee4a32aabe463b0ecb9e8f5e Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Fri, 31 Jan 2020 11:09:53 -0300 Subject: Clearer distinction between types and tags LUA_T* represents only types; tags (types + Variants) are represented by LUA_V* constants. --- ltests.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ltests.h') diff --git a/ltests.h b/ltests.h index 8c8de476..7328aaca 100644 --- a/ltests.h +++ b/ltests.h @@ -61,7 +61,7 @@ typedef struct Memcontrol { unsigned long maxmem; unsigned long memlimit; unsigned long countlimit; - unsigned long objcount[LUA_NUMTAGS]; + unsigned long objcount[LUA_NUMTYPES]; } Memcontrol; LUA_API Memcontrol l_memcontrol; -- cgit v1.2.3-55-g6feb