Skip to content

Commit

Permalink
Fix clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
dalance authored Feb 11, 2025
1 parent e914ea8 commit c0d07ff
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions crates/analyzer/src/evaluator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -653,8 +653,7 @@ impl Evaluated {
}

fn xor(self, exp: Evaluated) -> Evaluated {
let ret = Self::binary_op(self, exp, None, |x, y, _| x.max(y), |x, y| Some(x ^ y));
ret
Self::binary_op(self, exp, None, |x, y, _| x.max(y), |x, y| Some(x ^ y))
}

fn xnor(self, exp: Evaluated) -> Evaluated {
Expand Down

0 comments on commit c0d07ff

Please sign in to comment.