From a2e7c24e0055d13a61345dfce9fbe7fcf4e0d306 Mon Sep 17 00:00:00 2001 From: Dario Nieuwenhuis Date: Mon, 18 Oct 2021 00:55:43 +0200 Subject: Clippy fixes --- embassy-net/src/lib.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'embassy-net/src/lib.rs') diff --git a/embassy-net/src/lib.rs b/embassy-net/src/lib.rs index 47a3650b0..db2a7ebd4 100644 --- a/embassy-net/src/lib.rs +++ b/embassy-net/src/lib.rs @@ -1,4 +1,5 @@ #![cfg_attr(not(feature = "std"), no_std)] +#![allow(clippy::new_without_default)] // This mod MUST go first, so that the others see its macros. pub(crate) mod fmt; -- cgit