Skip to content
Snippets Groups Projects
Commit 280fb4d9 authored by Damien George's avatar Damien George
Browse files

py/emitbc: Remove stray semicolon in outer scope.

parent 89f657f0
No related branches found
No related tags found
No related merge requests found
...@@ -550,7 +550,7 @@ void mp_emit_bc_load_const_obj(emit_t *emit, mp_obj_t obj) { ...@@ -550,7 +550,7 @@ void mp_emit_bc_load_const_obj(emit_t *emit, mp_obj_t obj) {
void mp_emit_bc_load_null(emit_t *emit) { void mp_emit_bc_load_null(emit_t *emit) {
emit_bc_pre(emit, 1); emit_bc_pre(emit, 1);
emit_write_bytecode_byte(emit, MP_BC_LOAD_NULL); emit_write_bytecode_byte(emit, MP_BC_LOAD_NULL);
}; }
void mp_emit_bc_load_fast(emit_t *emit, qstr qst, mp_uint_t local_num) { void mp_emit_bc_load_fast(emit_t *emit, qstr qst, mp_uint_t local_num) {
(void)qst; (void)qst;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment