Skip to content

Commit

Permalink
Make linter happy
Browse files Browse the repository at this point in the history
  • Loading branch information
xdoardo committed Nov 27, 2024
1 parent 53a83e7 commit 59f37be
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 4 deletions.
11 changes: 9 additions & 2 deletions crates/c_api/src/ref.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
use crate::{
wasm_extern_t, wasm_foreign_t, wasm_func_t, wasm_global_t, wasm_instance_t, wasm_memory_t,
wasm_module_t, wasm_table_t, wasm_trap_t,
wasm_extern_t,
wasm_foreign_t,
wasm_func_t,
wasm_global_t,
wasm_instance_t,
wasm_memory_t,
wasm_module_t,
wasm_table_t,
wasm_trap_t,
};
use alloc::boxed::Box;
use core::{ffi::c_void, ptr, unimplemented};
Expand Down
12 changes: 10 additions & 2 deletions crates/c_api/src/vec.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
use crate::{
wasm_exporttype_t, wasm_extern_t, wasm_externtype_t, wasm_frame_t, wasm_functype_t,
wasm_globaltype_t, wasm_importtype_t, wasm_memorytype_t, wasm_tabletype_t, wasm_val_t,
wasm_exporttype_t,
wasm_extern_t,
wasm_externtype_t,
wasm_frame_t,
wasm_functype_t,
wasm_globaltype_t,
wasm_importtype_t,
wasm_memorytype_t,
wasm_tabletype_t,
wasm_val_t,
wasm_valtype_t,
};
use alloc::{boxed::Box, string::String, vec, vec::Vec};
Expand Down

0 comments on commit 59f37be

Please sign in to comment.