From 13c9fda39f509b606aa9c9f0819cdbc58ee7b5d9 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Fri, 8 Mar 2024 14:35:13 -0500 Subject: Simplify table def --- builtins/datatypes.h | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/builtins/datatypes.h b/builtins/datatypes.h index 649de7a6..a9c9ac27 100644 --- a/builtins/datatypes.h +++ b/builtins/datatypes.h @@ -24,13 +24,7 @@ typedef struct { } bucket_info_t; typedef struct table_s { - union { - array_t entries; - struct { - void *_entry_data; - int64_t length:42; - }; - }; + array_t entries; bucket_info_t *bucket_info; struct table_s *fallback; void *default_value; -- cgit v1.2.3