Remove stray debugging printlns (#1698)

Forgot to do this earlier!
This commit is contained in:
Alex Crichton
2020-05-14 10:26:09 -05:00
committed by GitHub
parent 0592b5a995
commit 1e3a1fa372

View File

@@ -70,7 +70,6 @@ pub extern "C" fn wasmtime_funcref_table_new(
which: ExternHost::Table(HostRef::new(table)), which: ExternHost::Table(HostRef::new(table)),
}, },
})); }));
println!("ret at {:?}", *out);
}, },
) )
} }
@@ -95,7 +94,6 @@ pub extern "C" fn wasmtime_funcref_table_get(
index: wasm_table_size_t, index: wasm_table_size_t,
ptr: &mut *mut wasm_func_t, ptr: &mut *mut wasm_func_t,
) -> bool { ) -> bool {
println!("get {:p} at {}", t, index);
match t.table().borrow().get(index) { match t.table().borrow().get(index) {
Some(val) => { Some(val) => {
*ptr = match val { *ptr = match val {