aboutsummaryrefslogtreecommitdiff
path: root/bin/src/fix.rs
diff options
context:
space:
mode:
authorAkshay <[email protected]>2021-10-26 14:48:28 +0100
committerAkshay <[email protected]>2021-10-26 15:20:23 +0100
commit20d195988de1014517ff1a1c8c1041cff5f88e05 (patch)
tree89b3f1cbce339211cad7f3489592e2bddc5c0518 /bin/src/fix.rs
parent393c28566206b4a077be3cfb0e4e931544f0709e (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.rs5
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
25impl<'a> FixResult<'a> { 25impl<'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}