Skip to content

Commit

Permalink
Pacify latest clippy (#1442)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nashtare authored Jan 2, 2024
1 parent ae3003a commit ef07eab
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions evm/src/cpu/columns/general.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ impl<T: Copy> CpuGeneralColumnsView<T> {
}

impl<T: Copy + PartialEq> PartialEq<Self> for CpuGeneralColumnsView<T> {
#[allow(clippy::unconditional_recursion)] // false positive
fn eq(&self, other: &Self) -> bool {
let self_arr: &[T; NUM_SHARED_COLUMNS] = self.borrow();
let other_arr: &[T; NUM_SHARED_COLUMNS] = other.borrow();
Expand Down

0 comments on commit ef07eab

Please sign in to comment.