From 315d0882041218c24a78b69fa906339774d16148 Mon Sep 17 00:00:00 2001 From: Nicholas Ward Date: Tue, 7 Jun 2022 13:58:49 -0700 Subject: [PATCH] ignore silly clippy warning --- evm/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/evm/src/lib.rs b/evm/src/lib.rs index bd8ca5f3..e0f04e04 100644 --- a/evm/src/lib.rs +++ b/evm/src/lib.rs @@ -1,4 +1,5 @@ #![allow(incomplete_features)] +#![allow(clippy::needless_range_loop)] #![allow(clippy::too_many_arguments)] #![allow(clippy::type_complexity)] #![feature(generic_const_exprs)]