From b159bca6f6ec6ef8003e2c2d323012c7e85f09af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emilio=20Cobos=20=C3=81lvarez?= Date: Tue, 22 Sep 2020 11:38:43 +0200 Subject: [PATCH] Appease rustfmt. --- src/bindgen/ir/function.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bindgen/ir/function.rs b/src/bindgen/ir/function.rs index 442c4e9..b702c65 100644 --- a/src/bindgen/ir/function.rs +++ b/src/bindgen/ir/function.rs @@ -211,7 +211,7 @@ impl Function { for arg in &mut self.args { match arg.ty { - Type::Ptr { .. } => {}, + Type::Ptr { .. } => {} _ => continue, } let name = match arg.name {