Skip to content

Commit

Permalink
fix: clippy complaints
Browse files Browse the repository at this point in the history
  • Loading branch information
ed255 committed May 21, 2024
1 parent c850856 commit 08e0eb4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions p3_frontend/src/fwrap.rs
Original file line number Diff line number Diff line change
Expand Up @@ -260,6 +260,7 @@ impl<F: PrimeField + Hash + Ord> PrimeField64 for FWrap<F> {
}
}

#[allow(clippy::bool_assert_comparison)]
#[cfg(test)]
mod test {
use super::*;
Expand Down
2 changes: 1 addition & 1 deletion p3_frontend/src/symbolic_builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
use alloc::vec;
use alloc::vec::Vec;

use p3_air::{Air, AirBuilder};
use p3_air::AirBuilder;
use p3_field::Field;
use p3_matrix::dense::RowMajorMatrix;

Expand Down
1 change: 1 addition & 0 deletions p3_frontend/src/symbolic_expression.rs
Original file line number Diff line number Diff line change
Expand Up @@ -321,6 +321,7 @@ impl<F: Field> Product<F> for SymbolicExpression<F> {
}
}

#[allow(clippy::bool_assert_comparison)]
#[cfg(test)]
mod test {
use super::*;
Expand Down

0 comments on commit 08e0eb4

Please sign in to comment.