diff --git a/src/libcore/sync/atomic.rs b/src/libcore/sync/atomic.rs index 91c026915685..cd3dd9ce1399 100644 --- a/src/libcore/sync/atomic.rs +++ b/src/libcore/sync/atomic.rs @@ -927,7 +927,7 @@ impl AtomicPtr { } } -#[stable(feature = "atomic_from", since = "1.22.0")] +#[stable(feature = "atomic_from", since = "1.23.0")] impl From<*mut T> for AtomicPtr { #[inline] fn from(p: *mut T) -> Self { Self::new(p) } @@ -973,7 +973,7 @@ macro_rules! atomic_int { } } - #[stable(feature = "atomic_from", since = "1.22.0")] + #[stable(feature = "atomic_from", since = "1.23.0")] impl From<$int_type> for $atomic_type { #[inline] fn from(v: $int_type) -> Self { Self::new(v) }