From 52b899d60d8c61b8affe0206014173912de94940 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Fri, 24 Nov 2023 14:41:07 -0300 Subject: Simpler coding for new representation for arrays With the tags comming first in a cell, we can define the whole cell as a C type and let C do part of the address computations. --- lobject.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lobject.h') diff --git a/lobject.h b/lobject.h index 8688a842..6da50215 100644 --- a/lobject.h +++ b/lobject.h @@ -762,7 +762,7 @@ typedef union Node { #define setnorealasize(t) ((t)->flags |= BITRAS) -typedef union ArrayCell ArrayCell; +typedef struct ArrayCell ArrayCell; typedef struct Table { -- cgit v1.2.3-55-g6feb