diff options
| author | Roy Hooper <rhooper@toybox.ca> | 2019-11-23 13:52:14 -0500 |
|---|---|---|
| committer | Roy Hooper <rhooper@toybox.ca> | 2019-11-23 13:52:14 -0500 |
| commit | a9baa441c94bf4ba9fe676a34e8a47fee6001559 (patch) | |
| tree | 05f914a9697010523cfcacf807cee99318eb910b /py/objtuple.c | |
| parent | 75e1e7da4b2cae6adae2b3e12ec4fb6de628598d (diff) | |
disable -Wunused-parameter on subscr functions
Diffstat (limited to 'py/objtuple.c')
| -rw-r--r-- | py/objtuple.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/py/objtuple.c b/py/objtuple.c index 625c53bdd..b6640def5 100644 --- a/py/objtuple.c +++ b/py/objtuple.c @@ -177,6 +177,7 @@ mp_obj_t mp_obj_tuple_binary_op(mp_binary_op_t op, mp_obj_t lhs, mp_obj_t rhs) { } } +#pragma GCC diagnostic ignored "-Wunused-parameter" mp_obj_t mp_obj_tuple_subscr(mp_obj_t self_in, mp_obj_t index, mp_obj_t value, mp_obj_t instance) { if (value == MP_OBJ_SENTINEL) { // load |
