summaryrefslogtreecommitdiffstatshomepage
path: root/py/map.h
diff options
context:
space:
mode:
Diffstat (limited to 'py/map.h')
-rw-r--r--py/map.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/py/map.h b/py/map.h
index ce5505571c..afebfda6ec 100644
--- a/py/map.h
+++ b/py/map.h
@@ -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;