From d9f5b4b3c2e449ee90739dc33d5564f3ebd0e19f Mon Sep 17 00:00:00 2001 From: Dario Nieuwenhuis Date: Thu, 22 Dec 2022 03:31:48 +0100 Subject: [PATCH] clippy: allow new_without_default. --- src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib.rs b/src/lib.rs index 78f1f82a..204139f2 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -86,6 +86,7 @@ compile_error!("at least one socket needs to be enabled"); */ #![allow(clippy::identity_op)] #![allow(clippy::option_map_unit_fn)] #![allow(clippy::unit_arg)] +#![allow(clippy::new_without_default)] #[cfg(feature = "alloc")] extern crate alloc;