From 21478939ed1d3d2862e7eb5f39107615a52cf29a Mon Sep 17 00:00:00 2001 From: Thomas Voss Date: Wed, 4 Mar 2026 02:17:07 +0100 Subject: Use tabs in macro_rules MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Apparently rustfmt doesn’t detect spaces vs tabs in macro_rules --- oryxc/src/compiler.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'oryxc/src/compiler.rs') diff --git a/oryxc/src/compiler.rs b/oryxc/src/compiler.rs index f578375..8fdd53f 100644 --- a/oryxc/src/compiler.rs +++ b/oryxc/src/compiler.rs @@ -130,7 +130,7 @@ where macro_rules! fdata_read { ($state:expr, $file:expr, $($field:ident),+ $(,)?) => { - #[allow(unused_parens)] + #[allow(unused_parens)] let ($($field),+) = { let fdata = $state.files.get(&$file).unwrap(); ($(fdata.$field.clone()),+) -- cgit v1.2.3