diff --git a/lib/c-api/src/wasm_c_api/externals/table.rs b/lib/c-api/src/wasm_c_api/externals/table.rs index c1ce5d1e5..7d68b52b8 100644 --- a/lib/c-api/src/wasm_c_api/externals/table.rs +++ b/lib/c-api/src/wasm_c_api/externals/table.rs @@ -16,9 +16,11 @@ pub unsafe extern "C" fn wasm_table_new( ) -> Option> { let table_type = table_type.inner().table_type.clone(); let init_val = todo!("get val from init somehow"); + /* let table = c_try!(Table::new(&store.inner, table_type, init_val)); Some(Box::new(wasm_table_t { inner: table })) + */ } #[no_mangle]