diff options
| author | Damien George <damien.p.george@gmail.com> | 2015-09-04 16:53:46 +0100 |
|---|---|---|
| committer | Damien George <damien.p.george@gmail.com> | 2015-09-04 16:53:46 +0100 |
| commit | 3a2171e4061f3a6e3f00c28edf78ff9473355887 (patch) | |
| tree | 255882baafabc810789d532d244bd9a30e298bb9 /py/emitbc.c | |
| parent | 42cec5c893c4055c9c3a4b224bbf65bf0dfd9f49 (diff) | |
py: Eliminate some cases which trigger unused parameter warnings.
Diffstat (limited to 'py/emitbc.c')
| -rw-r--r-- | py/emitbc.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/py/emitbc.c b/py/emitbc.c index 11e65f62e..63e7bc3f9 100644 --- a/py/emitbc.c +++ b/py/emitbc.c @@ -416,6 +416,9 @@ void mp_emit_bc_set_source_line(emit_t *emit, mp_uint_t source_line) { emit->last_source_line_offset = emit->bytecode_offset; emit->last_source_line = source_line; } +#else + (void)emit; + (void)source_line; #endif } |
