diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2022-11-08 10:15:10 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2022-11-08 10:15:10 -0300 |
commit | be908a7d4d8130264ad67c5789169769f824c5d1 (patch) | |
tree | 3601b5fe16b27045d0604fb27e4cc5c5ece6883c /lobject.h | |
parent | 9ede317c70ad82279f2e3962eb52904a17bf4b55 (diff) | |
download | lua-be908a7d4d8130264ad67c5789169769f824c5d1.tar.gz lua-be908a7d4d8130264ad67c5789169769f824c5d1.tar.bz2 lua-be908a7d4d8130264ad67c5789169769f824c5d1.zip |
Removed unused field 'UpVal.tbc'
Diffstat (limited to 'lobject.h')
-rw-r--r-- | lobject.h | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -628,7 +628,6 @@ typedef struct Proto { | |||
628 | */ | 628 | */ |
629 | typedef struct UpVal { | 629 | typedef struct UpVal { |
630 | CommonHeader; | 630 | CommonHeader; |
631 | lu_byte tbc; /* true if it represents a to-be-closed variable */ | ||
632 | union { | 631 | union { |
633 | TValue *p; /* points to stack or to its own value */ | 632 | TValue *p; /* points to stack or to its own value */ |
634 | ptrdiff_t offset; /* used while the stack is being reallocated */ | 633 | ptrdiff_t offset; /* used while the stack is being reallocated */ |