From f7ce24791a6e61a25ac3bcc95d857921d4f43a46 Mon Sep 17 00:00:00 2001 From: Stefan Kroboth Date: Wed, 17 Jan 2024 10:00:10 +0100 Subject: [PATCH] (clippy) allow complex types --- argmin/src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/argmin/src/lib.rs b/argmin/src/lib.rs index 316c43e03..275dd90f7 100644 --- a/argmin/src/lib.rs +++ b/argmin/src/lib.rs @@ -112,6 +112,8 @@ // Explicitly disallow EQ comparison of floats. (This clippy lint is denied by default; however, // this is just to make sure that it will always stay this way.) #![deny(clippy::float_cmp)] +// Some types just are complex +#![allow(clippy::type_complexity)] #[macro_use] pub mod core;