Skip to content

Commit be21779

Browse files
committed
since = "1.23.0"
1 parent 80a3191 commit be21779

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/libcore/sync/atomic.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -927,7 +927,7 @@ impl<T> AtomicPtr<T> {
927927
}
928928
}
929929

930-
#[stable(feature = "atomic_from", since = "1.22.0")]
930+
#[stable(feature = "atomic_from", since = "1.23.0")]
931931
impl<T> From<*mut T> for AtomicPtr<T> {
932932
#[inline]
933933
fn from(p: *mut T) -> Self { Self::new(p) }
@@ -973,7 +973,7 @@ macro_rules! atomic_int {
973973
}
974974
}
975975

976-
#[stable(feature = "atomic_from", since = "1.22.0")]
976+
#[stable(feature = "atomic_from", since = "1.23.0")]
977977
impl From<$int_type> for $atomic_type {
978978
#[inline]
979979
fn from(v: $int_type) -> Self { Self::new(v) }

0 commit comments

Comments
 (0)