diff options
author | Damien George <damien.p.george@gmail.com> | 2016-01-10 00:06:36 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2016-01-10 00:06:36 +0000 |
commit | fe6756aa2d4fb0b2f39dce2fd09a69421c2d963a (patch) | |
tree | b404c9be4e21a483653c348b62afee970129d6da /py/obj.h | |
parent | bae052d4209024f65dcfc1c99127ef6e4ca351fa (diff) | |
download | micropython-fe6756aa2d4fb0b2f39dce2fd09a69421c2d963a.tar.gz micropython-fe6756aa2d4fb0b2f39dce2fd09a69421c2d963a.zip |
py: Remove long-obsolete mp_method_t typedef.
Diffstat (limited to 'py/obj.h')
-rw-r--r-- | py/obj.h | 5 |
1 files changed, 0 insertions, 5 deletions
@@ -415,11 +415,6 @@ typedef mp_obj_t (*mp_binary_op_fun_t)(mp_uint_t op, mp_obj_t, mp_obj_t); typedef void (*mp_attr_fun_t)(mp_obj_t self_in, qstr attr, mp_obj_t *dest); typedef mp_obj_t (*mp_subscr_fun_t)(mp_obj_t self_in, mp_obj_t index, mp_obj_t value); -typedef struct _mp_method_t { - qstr name; - mp_const_obj_t fun; -} mp_method_t; - // Buffer protocol typedef struct _mp_buffer_info_t { // if we'd bother to support various versions of structure |