@@ -373,7 +373,7 @@ impl AtomicBool {
373
373
/// assert_eq!(some_bool, false);
374
374
/// ```
375
375
#[ inline]
376
- #[ unstable( feature = "atomic_from_mut" , issue = "none " ) ]
376
+ #[ unstable( feature = "atomic_from_mut" , issue = "76314 " ) ]
377
377
pub fn from_mut ( v : & mut bool ) -> & Self {
378
378
// SAFETY: the mutable reference guarantees unique ownership, and
379
379
// alignment of both `bool` and `Self` is 1.
@@ -950,7 +950,7 @@ impl<T> AtomicPtr<T> {
950
950
/// assert_eq!(unsafe { *some_ptr }, 456);
951
951
/// ```
952
952
#[ inline]
953
- #[ unstable( feature = "atomic_from_mut" , issue = "none " ) ]
953
+ #[ unstable( feature = "atomic_from_mut" , issue = "76314 " ) ]
954
954
pub fn from_mut ( v : & mut * mut T ) -> & Self {
955
955
let [ ] = [ ( ) ; align_of :: < Self > ( ) - align_of :: < * mut T > ( ) ] ;
956
956
// SAFETY:
@@ -1438,7 +1438,7 @@ assert_eq!(some_int, 100);
1438
1438
" ) ,
1439
1439
#[ inline]
1440
1440
$( #[ cfg( $from_mut_cfg) ] ) ?
1441
- #[ unstable( feature = "atomic_from_mut" , issue = "none " ) ]
1441
+ #[ unstable( feature = "atomic_from_mut" , issue = "76314 " ) ]
1442
1442
pub fn from_mut( v: & mut $int_type) -> & Self {
1443
1443
let [ ] = [ ( ) ; align_of:: <Self >( ) - align_of:: <$int_type>( ) ] ;
1444
1444
// SAFETY:
0 commit comments