From be21779072419eaa7ddbf948e9caa58c688b73e9 Mon Sep 17 00:00:00 2001 From: M Farkas-Dyck Date: Tue, 31 Oct 2017 11:15:10 -0800 Subject: [PATCH] since = "1.23.0" --- src/libcore/sync/atomic.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libcore/sync/atomic.rs b/src/libcore/sync/atomic.rs index 91c0269156854..cd3dd9ce1399e 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) }