Solve the rest of the compiler warnings.

This commit is contained in:
Tom Alexander
2023-04-21 18:42:31 -04:00
parent a1724dae52
commit 18323a2b43
13 changed files with 16 additions and 31 deletions

View File

@@ -18,7 +18,7 @@ impl<I> ParseError<I> for CustomError<I> {
CustomError::Nom(input, kind)
}
fn append(_input: I, _kind: ErrorKind, mut other: Self) -> Self {
fn append(_input: I, _kind: ErrorKind, /*mut*/ other: Self) -> Self {
// Doesn't do append like VerboseError
other
}