From e2f35ce6df14bb67c19f4f1f7e8f6dde6f1bdffd Mon Sep 17 00:00:00 2001 From: Federico Gimenez Date: Wed, 2 Oct 2024 15:05:02 +0200 Subject: [PATCH] chore: remove temporary allow attribute (#11428) --- crates/storage/db/src/static_file/mask.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/crates/storage/db/src/static_file/mask.rs b/crates/storage/db/src/static_file/mask.rs index 61fef697e1..f5d35a193d 100644 --- a/crates/storage/db/src/static_file/mask.rs +++ b/crates/storage/db/src/static_file/mask.rs @@ -26,9 +26,6 @@ macro_rules! add_segments { $( #[doc = concat!("Mask for ", stringify!($segment), " static file segment. See [`Mask`] for more.")] #[derive(Debug)] - // TODO: remove next attribute when nightly is fixed (ie. does - // not return wrong warnings for never constructed structs). - #[allow(dead_code)] pub struct [<$segment Mask>](Mask); )+ }