From e4b02ca8e48b499c57dd3e5882d18145db60fd4c Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Fri, 21 Jun 2019 10:16:57 -0300 Subject: Structure 'Vardesc' does not need a 'name' field Removed the field 'name' from the structure 'Vardesc', as the name of the local variable is already available in the prototype of the function, through the index 'idx'. --- lparser.h | 1 - 1 file changed, 1 deletion(-) (limited to 'lparser.h') diff --git a/lparser.h b/lparser.h index 3b5d399f..228d4a5c 100644 --- a/lparser.h +++ b/lparser.h @@ -81,7 +81,6 @@ typedef struct expdesc { /* description of an active local variable */ typedef struct Vardesc { - TString *name; short idx; /* index of the variable in the Proto's 'locvars' array */ lu_byte ro; /* true if variable is 'const' */ } Vardesc; -- cgit v1.2.3-55-g6feb