Avoid taking the address of a 'TValue' field

That structure can be packed in the future.
This commit is contained in:
Roberto Ierusalimschy
2021-10-11 13:52:26 -03:00
parent 87a9573b2e
commit 0e5071b5fb
2 changed files with 10 additions and 10 deletions

View File

@@ -68,7 +68,7 @@ typedef struct TValue {
#define val_(o) ((o)->value_)
#define valraw(o) (&val_(o))
#define valraw(o) (val_(o))
/* raw type tag of a TValue */