From f60edd25cf25f833211917821220064572bd9738 Mon Sep 17 00:00:00 2001 From: dbr Date: Wed, 4 Jan 2023 16:57:25 +1030 Subject: [PATCH] fmt --- xtask/src/bindgen.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xtask/src/bindgen.rs b/xtask/src/bindgen.rs index d963663..e686b92 100644 --- a/xtask/src/bindgen.rs +++ b/xtask/src/bindgen.rs @@ -22,7 +22,10 @@ impl Bindgen { None => "".to_string(), Some(x) => format!("-{}", x), }; - let cimgui_output = root.join(&format!("imgui-sys/third-party/imgui-{}{}", variant, additional)); + let cimgui_output = root.join(&format!( + "imgui-sys/third-party/imgui-{}{}", + variant, additional + )); let types = get_types(&cimgui_output.join("structs_and_enums.json"))?; let funcs = get_definitions(&cimgui_output.join("definitions.json"))?;