summaryrefslogtreecommitdiff
path: root/oryxc/src/compiler.rs
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2026-03-04 02:17:07 +0100
committerThomas Voss <mail@thomasvoss.com> 2026-03-04 02:17:07 +0100
commit21478939ed1d3d2862e7eb5f39107615a52cf29a (patch)
treeca7f6350ea909236ba4d9943fa808bfe8032cf68 /oryxc/src/compiler.rs
parent5a0fdbc104bcf7b0da5405a664a8ee60e07b887f (diff)
Use tabs in macro_rules
Apparently rustfmt doesn’t detect spaces vs tabs in macro_rules
Diffstat (limited to 'oryxc/src/compiler.rs')
-rw-r--r--oryxc/src/compiler.rs2
1 files changed, 1 insertions, 1 deletions
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()),+)