diff --git a/evm/src/cpu/columns/general.rs b/evm/src/cpu/columns/general.rs index 1d631243ce..08b6c82dd1 100644 --- a/evm/src/cpu/columns/general.rs +++ b/evm/src/cpu/columns/general.rs @@ -76,6 +76,7 @@ impl CpuGeneralColumnsView { } impl PartialEq for CpuGeneralColumnsView { + #[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();