Skip to content

Commit 71d766b

Browse files
authored
Change version number for impl From<bool> for AtomicBool to 1.24.0
1 parent 652a4bd commit 71d766b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libcore/sync/atomic.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -928,7 +928,7 @@ impl<T> AtomicPtr<T> {
928928
}
929929

930930
#[cfg(target_has_atomic = "8")]
931-
#[stable(feature = "atomic_from", since = "1.23.0")]
931+
#[stable(feature = "atomic_bool_from", since = "1.24.0")]
932932
impl From<bool> for AtomicBool {
933933
#[inline]
934934
fn from(b: bool) -> Self { Self::new(b) }

0 commit comments

Comments
 (0)