From ef07eabf845e36c242109dd1ba199d00ad1d8a4b Mon Sep 17 00:00:00 2001 From: Robin Salen <30937548+Nashtare@users.noreply.github.com> Date: Tue, 2 Jan 2024 09:08:19 +0100 Subject: [PATCH] Pacify latest clippy (#1442) --- evm/src/cpu/columns/general.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/evm/src/cpu/columns/general.rs b/evm/src/cpu/columns/general.rs index 1d631243..08b6c82d 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();