Get rid of some warnings

This commit is contained in:
Joscha 2021-12-05 18:39:53 +01:00
parent 8d49ac139a
commit 9920b00916
3 changed files with 3 additions and 53 deletions

View file

@ -219,7 +219,7 @@ impl fmt::Display for Statement {
Statement::Until(Some(date)) => writeln!(f, "UNTIL {}", date),
Statement::Until(None) => writeln!(f, "UNTIL *"),
Statement::Except(date) => writeln!(f, "EXCEPT {}", date),
Statement::Move { span, from, to } => writeln!(f, "MOVE {} TO {}", from, to),
Statement::Move { from, to, .. } => writeln!(f, "MOVE {} TO {}", from, to),
}
}
}