@@ -342,8 +342,8 @@ impl AtomicBool {
342
342
/// * The value behind `ptr` must not be accessed through non-atomic operations for the whole lifetime `'a`.
343
343
///
344
344
/// [valid]: crate::ptr#safety
345
- #[ unstable( feature = "atomic_from_ptr" , issue = "none " ) ]
346
- #[ rustc_const_unstable( feature = "atomic_from_ptr" , issue = "none " ) ]
345
+ #[ unstable( feature = "atomic_from_ptr" , issue = "108652 " ) ]
346
+ #[ rustc_const_unstable( feature = "atomic_from_ptr" , issue = "108652 " ) ]
347
347
pub const unsafe fn from_ptr < ' a > ( ptr : * mut bool ) -> & ' a AtomicBool {
348
348
// SAFETY: guaranteed by the caller
349
349
unsafe { & * ptr. cast ( ) }
@@ -1098,8 +1098,8 @@ impl<T> AtomicPtr<T> {
1098
1098
/// * The value behind `ptr` must not be accessed through non-atomic operations for the whole lifetime `'a`.
1099
1099
///
1100
1100
/// [valid]: crate::ptr#safety
1101
- #[ unstable( feature = "atomic_from_ptr" , issue = "none " ) ]
1102
- #[ rustc_const_unstable( feature = "atomic_from_ptr" , issue = "none " ) ]
1101
+ #[ unstable( feature = "atomic_from_ptr" , issue = "108652 " ) ]
1102
+ #[ rustc_const_unstable( feature = "atomic_from_ptr" , issue = "108652 " ) ]
1103
1103
pub const unsafe fn from_ptr < ' a > ( ptr : * mut * mut T ) -> & ' a AtomicPtr < T > {
1104
1104
// SAFETY: guaranteed by the caller
1105
1105
unsafe { & * ptr. cast ( ) }
@@ -2085,8 +2085,8 @@ macro_rules! atomic_int {
2085
2085
/// * The value behind `ptr` must not be accessed through non-atomic operations for the whole lifetime `'a`.
2086
2086
///
2087
2087
/// [valid]: crate::ptr#safety
2088
- #[ unstable( feature = "atomic_from_ptr" , issue = "none " ) ]
2089
- #[ rustc_const_unstable( feature = "atomic_from_ptr" , issue = "none " ) ]
2088
+ #[ unstable( feature = "atomic_from_ptr" , issue = "108652 " ) ]
2089
+ #[ rustc_const_unstable( feature = "atomic_from_ptr" , issue = "108652 " ) ]
2090
2090
pub const unsafe fn from_ptr<' a>( ptr: * mut $int_type) -> & ' a $atomic_type {
2091
2091
// SAFETY: guaranteed by the caller
2092
2092
unsafe { & * ptr. cast( ) }
0 commit comments