diff options
Diffstat (limited to 'py/map.h')
-rw-r--r-- | py/map.h | 8 |
1 files changed, 3 insertions, 5 deletions
@@ -4,11 +4,9 @@ typedef struct _mp_map_elem_t { } mp_map_elem_t; typedef struct _mp_map_t { - struct { - machine_uint_t all_keys_are_qstrs : 1; - machine_uint_t table_is_fixed_array : 1; - machine_uint_t used : (8 * sizeof(machine_uint_t) - 2); - }; + machine_uint_t all_keys_are_qstrs : 1; + machine_uint_t table_is_fixed_array : 1; + machine_uint_t used : (8 * sizeof(machine_uint_t) - 2); machine_uint_t alloc; mp_map_elem_t *table; } mp_map_t; |