diff options
Diffstat (limited to 'bin/src/fix.rs')
-rw-r--r-- | bin/src/fix.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/bin/src/fix.rs b/bin/src/fix.rs index a7ddc4f..c378c13 100644 --- a/bin/src/fix.rs +++ b/bin/src/fix.rs | |||
@@ -24,6 +24,9 @@ pub struct Fixed { | |||
24 | 24 | ||
25 | impl<'a> FixResult<'a> { | 25 | impl<'a> FixResult<'a> { |
26 | fn empty(src: Source<'a>) -> Self { | 26 | fn empty(src: Source<'a>) -> Self { |
27 | Self { src, fixed: Vec::new() } | 27 | Self { |
28 | src, | ||
29 | fixed: Vec::new(), | ||
30 | } | ||
28 | } | 31 | } |
29 | } | 32 | } |