diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-03-08 14:35:13 -0500 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-03-08 14:35:13 -0500 |
| commit | 13c9fda39f509b606aa9c9f0819cdbc58ee7b5d9 (patch) | |
| tree | 62b12c521c9e62c4b182645e8e7b5c9fb20e022c | |
| parent | 8427037bb91638b57f0f805cdf1581402cb0f335 (diff) | |
Simplify table def
| -rw-r--r-- | builtins/datatypes.h | 8 |
1 files changed, 1 insertions, 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; |
