From 8047b2d03eaaeee44871a11f8d3a3135f2639b1a Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Tue, 1 Nov 2022 15:42:08 -0300 Subject: Tables have a 'lastfree' information only when needed Only tables with some minimum number of entries in their hash part have a 'lastfree' field, kept in a header before the node vector. --- lobject.h | 1 - 1 file changed, 1 deletion(-) (limited to 'lobject.h') diff --git a/lobject.h b/lobject.h index e7f58cbd..74a6fd1e 100644 --- a/lobject.h +++ b/lobject.h @@ -744,7 +744,6 @@ typedef struct Table { unsigned int alimit; /* "limit" of 'array' array */ TValue *array; /* array part */ Node *node; - Node *lastfree; /* any free position is before this position */ struct Table *metatable; GCObject *gclist; } Table; -- cgit v1.2.3-55-g6feb