@@ -283,7 +283,7 @@ impl AtomicBool {
283
283
/// ```
284
284
#[ inline]
285
285
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
286
- #[ rustc_const_stable( feature = "const_atomic_new" , since = "1.32 .0" ) ]
286
+ #[ rustc_const_stable( feature = "const_atomic_new" , since = "1.24 .0" ) ]
287
287
pub const fn new ( v : bool ) -> AtomicBool {
288
288
AtomicBool { v : UnsafeCell :: new ( v as u8 ) }
289
289
}
@@ -883,7 +883,7 @@ impl<T> AtomicPtr<T> {
883
883
/// ```
884
884
#[ inline]
885
885
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
886
- #[ rustc_const_stable( feature = "const_atomic_new" , since = "1.32 .0" ) ]
886
+ #[ rustc_const_stable( feature = "const_atomic_new" , since = "1.24 .0" ) ]
887
887
pub const fn new ( p : * mut T ) -> AtomicPtr < T > {
888
888
AtomicPtr { p : UnsafeCell :: new ( p) }
889
889
}
@@ -2276,7 +2276,7 @@ macro_rules! atomic_int_ptr_sized {
2276
2276
stable( feature = "atomic_access" , since = "1.15.0" ) ,
2277
2277
stable( feature = "atomic_from" , since = "1.23.0" ) ,
2278
2278
stable( feature = "atomic_nand" , since = "1.27.0" ) ,
2279
- rustc_const_stable( feature = "const_integer_atomics" , since = "1.34 .0" ) ,
2279
+ rustc_const_stable( feature = "const_integer_atomics" , since = "1.24 .0" ) ,
2280
2280
stable( feature = "rust1" , since = "1.0.0" ) ,
2281
2281
"isize" ,
2282
2282
"" ,
@@ -2296,7 +2296,7 @@ macro_rules! atomic_int_ptr_sized {
2296
2296
stable( feature = "atomic_access" , since = "1.15.0" ) ,
2297
2297
stable( feature = "atomic_from" , since = "1.23.0" ) ,
2298
2298
stable( feature = "atomic_nand" , since = "1.27.0" ) ,
2299
- rustc_const_stable( feature = "const_integer_atomics" , since = "1.34 .0" ) ,
2299
+ rustc_const_stable( feature = "const_integer_atomics" , since = "1.24 .0" ) ,
2300
2300
stable( feature = "rust1" , since = "1.0.0" ) ,
2301
2301
"usize" ,
2302
2302
"" ,
0 commit comments