File tree 1 file changed +3
-3
lines changed 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -114,7 +114,7 @@ extern const mp_obj_t mp_const_stop_iteration; // special object indicating end
114
114
115
115
// Need to declare this here so we are not dependent on map.h
116
116
117
- typedef struct _mp_map_t mp_map_t ;
117
+ struct _mp_map_t ;
118
118
119
119
// General API for objects
120
120
@@ -145,7 +145,7 @@ mp_obj_t mp_obj_new_list_reverse(uint n, mp_obj_t *items);
145
145
mp_obj_t mp_obj_new_dict (int n_args );
146
146
mp_obj_t mp_obj_new_set (int n_args , mp_obj_t * items );
147
147
mp_obj_t mp_obj_new_bound_meth (mp_obj_t self , mp_obj_t meth );
148
- mp_obj_t mp_obj_new_class (mp_map_t * class_locals );
148
+ mp_obj_t mp_obj_new_class (struct _mp_map_t * class_locals );
149
149
mp_obj_t mp_obj_new_instance (mp_obj_t clas );
150
150
151
151
const char * mp_obj_get_type_str (mp_obj_t o_in );
@@ -230,7 +230,7 @@ extern const mp_obj_type_t gen_instance_type;
230
230
// class
231
231
extern const mp_obj_type_t class_type ;
232
232
extern const mp_obj_t gen_instance_next_obj ;
233
- mp_map_t * mp_obj_class_get_locals (mp_obj_t self_in );
233
+ struct _mp_map_t * mp_obj_class_get_locals (mp_obj_t self_in );
234
234
235
235
// instance
236
236
extern const mp_obj_type_t instance_type ;
You can’t perform that action at this time.
0 commit comments