all: Remove unnecessary locals_dict cast.
Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
This commit is contained in:
committed by
Damien George
parent
b7d6ee9b75
commit
9dce82776d
@@ -548,7 +548,7 @@ MP_DEFINE_CONST_OBJ_TYPE(
|
||||
unary_op, set_unary_op,
|
||||
binary_op, set_binary_op,
|
||||
getiter, set_getiter,
|
||||
locals_dict, (mp_obj_dict_t *)&set_locals_dict
|
||||
locals_dict, &set_locals_dict
|
||||
);
|
||||
|
||||
#if MICROPY_PY_BUILTINS_FROZENSET
|
||||
@@ -574,7 +574,7 @@ MP_DEFINE_CONST_OBJ_TYPE(
|
||||
unary_op, set_unary_op,
|
||||
binary_op, set_binary_op,
|
||||
getiter, set_getiter,
|
||||
locals_dict, (mp_obj_dict_t *)&frozenset_locals_dict
|
||||
locals_dict, &frozenset_locals_dict
|
||||
);
|
||||
#endif
|
||||
|
||||
|
||||
Reference in New Issue
Block a user