diff options
| author | Dan Halbert <halbert@halwitz.org> | 2018-07-12 14:13:51 -0400 |
|---|---|---|
| committer | Dan Halbert <halbert@halwitz.org> | 2018-07-12 14:13:51 -0400 |
| commit | 0d27f4d9a66dcb47b545e715d1833094b0c7b484 (patch) | |
| tree | 14c17d103d0dfddae7f031aa4fdb004c5ebca2e1 /py/objtype.c | |
| parent | 7c219600a246d8956d0b23ea3f5d125a820e6b6a (diff) | |
continued WIP: almost compiling
Diffstat (limited to 'py/objtype.c')
| -rw-r--r-- | py/objtype.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/py/objtype.c b/py/objtype.c index dc9724e5b..7244abd9e 100644 --- a/py/objtype.c +++ b/py/objtype.c @@ -1283,7 +1283,8 @@ STATIC void super_attr(mp_obj_t self_in, qstr attr, mp_obj_t *dest) { attr_get_method[2] = self_in; attr_get_method[3] = MP_OBJ_FROM_PTR(mp_obj_get_type(self_in)); dest[0] = mp_call_method_n_kw(2, 0, attr_get_method); - } + } + #endif return; } |
