From 705bfacf109a718b616960e0fde24fb8a0a176e1 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Tue, 13 Aug 2019 13:14:03 -0700 Subject: [PATCH] rustfmt --- cranelift/wasm/src/environ/spec.rs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) 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(()) }