Formatting and Clippy

This commit is contained in:
Brian Carroll 2022-02-06 15:22:47 +00:00
parent ff6b29dfe7
commit c21b2bd0da
3 changed files with 6 additions and 11 deletions

View file

@ -123,12 +123,7 @@ fn compile_roc_to_wasm_bytes<'a, T: Wasm32Result>(
};
let (mut module, called_preload_fns, main_fn_index) =
roc_gen_wasm::build_module_without_wrapper(
&env,
&mut interns,
preload_bytes,
procedures,
);
roc_gen_wasm::build_module_without_wrapper(&env, &mut interns, preload_bytes, procedures);
T::insert_wrapper(arena, &mut module, TEST_WRAPPER_NAME, main_fn_index);