Skip to content

Commit

Permalink
ci
Browse files Browse the repository at this point in the history
  • Loading branch information
cvng committed Feb 3, 2024
1 parent 3888951 commit 6ba2441
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions parser/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,7 @@ 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
1 change: 1 addition & 0 deletions rewriter/src/parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,7 @@ 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 6ba2441

Please sign in to comment.