From 3c4a34c7da116e10c5fc31c877062a199c8bfa4b Mon Sep 17 00:00:00 2001 From: Matthias Geier Date: Wed, 3 Apr 2024 15:54:19 +0200 Subject: [PATCH] Allow undocumented unsafe blocks in cache_padded.rs --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index b58b0c4..4914e4a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -60,7 +60,7 @@ use core::marker::PhantomData; use core::mem::{ManuallyDrop, MaybeUninit}; use core::sync::atomic::{AtomicUsize, Ordering}; -#[allow(dead_code)] +#[allow(dead_code, clippy::undocumented_unsafe_blocks)] mod cache_padded; use cache_padded::CachePadded;