diff options
| -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; |
