Skip to content

Commit

Permalink
fix: clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
39555 committed Nov 22, 2024
1 parent a583d24 commit 431b6f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/combinator/expression.rs
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ pub struct Prefix<I, O, E>(i64, fn(&mut I, O) -> PResult<O, E>);
impl<I, O, E> Clone for Prefix<I, O, E> {
#[inline(always)]
fn clone(&self) -> Self {
Prefix(self.0, self.1.clone())
Prefix(self.0, self.1)
}
}

Expand Down

0 comments on commit 431b6f6

Please sign in to comment.