diff options
author | Akshay <[email protected]> | 2021-10-26 14:48:28 +0100 |
---|---|---|
committer | Akshay <[email protected]> | 2021-10-26 15:20:23 +0100 |
commit | 20d195988de1014517ff1a1c8c1041cff5f88e05 (patch) | |
tree | 89b3f1cbce339211cad7f3489592e2bddc5c0518 /bin/src/fix.rs | |
parent | 393c28566206b4a077be3cfb0e4e931544f0709e (diff) |
set internal crates to 0.0.0, bump to v0.2.0v0.2.0
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 | } |