We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent adec693 commit f1f411cCopy full SHA for f1f411c
src/lib.rs
@@ -133,7 +133,7 @@ impl<T: Primitive> From<T> for AtomicMaybeUninit<T> {
133
}
134
135
impl<T: Primitive> fmt::Debug for AtomicMaybeUninit<T> {
136
- #[allow(clippy::missing_inline_in_public_items)] // fmt is not hot path
+ #[inline] // fmt is not hot path, but #[inline] on fmt seems to still be useful: https://github.com/rust-lang/rust/pull/117727
137
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
138
f.write_str(core::any::type_name::<Self>())
139
0 commit comments