diff options
author | Damien George <damien.p.george@gmail.com> | 2015-01-20 12:47:20 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2015-01-20 12:47:20 +0000 |
commit | ff8dd3f486afb0d6ff1427d8a6a8a8ed73baa660 (patch) | |
tree | 16b54a843a312757976e15f24f413e00e151fbe2 /py/objslice.c | |
parent | 50912e7f5dc579fd2917537046793dfa30decadf (diff) |
py, unix: Allow to compile with -Wunused-parameter.
See issue #699.
Diffstat (limited to 'py/objslice.c')
-rw-r--r-- | py/objslice.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/py/objslice.c b/py/objslice.c index 3f090dc23..4f3d054c6 100644 --- a/py/objslice.c +++ b/py/objslice.c @@ -39,6 +39,8 @@ typedef struct _mp_obj_ellipsis_t { } mp_obj_ellipsis_t; STATIC void ellipsis_print(void (*print)(void *env, const char *fmt, ...), void *env, mp_obj_t self_in, mp_print_kind_t kind) { + (void)self_in; + (void)kind; print(env, "Ellipsis"); } @@ -65,6 +67,7 @@ typedef struct _mp_obj_slice_t { } mp_obj_slice_t; STATIC void slice_print(void (*print)(void *env, const char *fmt, ...), void *env, mp_obj_t o_in, mp_print_kind_t kind) { + (void)kind; mp_obj_slice_t *o = o_in; print(env, "slice("); mp_obj_print_helper(print, env, o->start, PRINT_REPR); |