From 56ce44ff801be5ac10773f75b895b1d3a3f4a528 Mon Sep 17 00:00:00 2001 From: Dominik Maier Date: Wed, 7 Apr 2021 11:35:27 +0200 Subject: [PATCH] clippy ignore --- libafl/src/events/llmp.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libafl/src/events/llmp.rs b/libafl/src/events/llmp.rs index 72797512aa..a3acd8e6c1 100644 --- a/libafl/src/events/llmp.rs +++ b/libafl/src/events/llmp.rs @@ -507,7 +507,7 @@ where /// A restarting state is a combination of restarter and runner, that can be used on systems without `fork`. /// The restarter will start a new process each time the child crashes or timeouts. #[cfg(feature = "std")] -#[allow(clippy::clippy::unnecessary_operation)] // for { mgr = LlmpEventManager... } +#[allow(clippy::clippy::unnecessary_operation, clippy::clippy::type_complexity)] // for { mgr = LlmpEventManager... } pub fn setup_restarting_mgr( //mgr: &mut LlmpEventManager, stats: ST,