diff --git a/cranelift/wasm/src/environ/spec.rs b/cranelift/wasm/src/environ/spec.rs index b653091153..e01c9b3cf9 100644 --- a/cranelift/wasm/src/environ/spec.rs +++ b/cranelift/wasm/src/environ/spec.rs @@ -469,11 +469,7 @@ pub trait ModuleEnvironment<'data> { ) -> WasmResult<()>; /// Indicates that a custom section has been found in the wasm file - fn custom_section( - &mut self, - name: &'data str, - data: &'data [u8], - ) -> WasmResult<()> { + fn custom_section(&mut self, name: &'data str, data: &'data [u8]) -> WasmResult<()> { drop((name, data)); Ok(()) }