diff options
Diffstat (limited to 'oryxc/src/compiler.rs')
| -rw-r--r-- | oryxc/src/compiler.rs | 2 |
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()),+) |