Skip to content

Commit

Permalink
t
Browse files Browse the repository at this point in the history
  • Loading branch information
cvng committed Feb 3, 2024
1 parent 6ba2441 commit 3a46d32
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion rewriter/src/parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,6 @@ fn skip_till<'a, O>(
) -> impl FnMut(&'a str) -> ParseResult<'a, (&'a str, O)> {
enum Next<O> {
IsEnd(O),
#[allow(dead_code)]
NotEnd(char),
}
let mut next = alt((map(end, Next::IsEnd), map(anychar, Next::NotEnd)));
Expand Down

0 comments on commit 3a46d32

Please sign in to comment.