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

@@ -122,7 +122,7 @@ pub fn plain_list<'r, 's>(context: Context<'r, 's>, input: &'s str) -> Res<&'s s
return Err(nom::Err::Error(CustomError::MyError(MyError(
"Should be unreachable.",
))));
unreachable!();
// unreachable!();
}
};
}