Skip to content

Commit

Permalink
Allow undocumented unsafe blocks in cache_padded.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
mgeier committed Apr 3, 2024
1 parent aaa7ca7 commit 3c4a34c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit 3c4a34c

Please sign in to comment.