From be908a7d4d8130264ad67c5789169769f824c5d1 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Tue, 8 Nov 2022 10:15:10 -0300 Subject: Removed unused field 'UpVal.tbc' --- lobject.h | 1 - 1 file changed, 1 deletion(-) (limited to 'lobject.h') diff --git a/lobject.h b/lobject.h index e7f58cbd..556608e4 100644 --- a/lobject.h +++ b/lobject.h @@ -628,7 +628,6 @@ typedef struct Proto { */ typedef struct UpVal { CommonHeader; - lu_byte tbc; /* true if it represents a to-be-closed variable */ union { TValue *p; /* points to stack or to its own value */ ptrdiff_t offset; /* used while the stack is being reallocated */ -- cgit v1.2.3-55-g6feb