We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 80a3191 commit be21779Copy full SHA for be21779
src/libcore/sync/atomic.rs
@@ -927,7 +927,7 @@ impl<T> AtomicPtr<T> {
927
}
928
929
930
-#[stable(feature = "atomic_from", since = "1.22.0")]
+#[stable(feature = "atomic_from", since = "1.23.0")]
931
impl<T> From<*mut T> for AtomicPtr<T> {
932
#[inline]
933
fn from(p: *mut T) -> Self { Self::new(p) }
@@ -973,7 +973,7 @@ macro_rules! atomic_int {
973
974
975
976
- #[stable(feature = "atomic_from", since = "1.22.0")]
+ #[stable(feature = "atomic_from", since = "1.23.0")]
977
impl From<$int_type> for $atomic_type {
978
979
fn from(v: $int_type) -> Self { Self::new(v) }
0 commit comments