File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -502,7 +502,7 @@ pub enum Ordering {
502
502
note = "the `new` function is now preferred" ,
503
503
suggestion = "AtomicBool::new(false)"
504
504
) ]
505
- pub const ATOMIC_BOOL_INIT : Atomic < bool > = AtomicBool :: new ( false ) ;
505
+ pub const ATOMIC_BOOL_INIT : AtomicBool = AtomicBool :: new ( false ) ;
506
506
507
507
#[ cfg( target_has_atomic_load_store = "8" ) ]
508
508
impl AtomicBool {
@@ -3769,7 +3769,7 @@ macro_rules! atomic_int_ptr_sized {
3769
3769
note = "the `new` function is now preferred" ,
3770
3770
suggestion = "AtomicIsize::new(0)" ,
3771
3771
) ]
3772
- pub const ATOMIC_ISIZE_INIT : Atomic < isize > = AtomicIsize :: new( 0 ) ;
3772
+ pub const ATOMIC_ISIZE_INIT : AtomicIsize = AtomicIsize :: new( 0 ) ;
3773
3773
3774
3774
/// An [`AtomicUsize`] initialized to `0`.
3775
3775
#[ cfg( target_pointer_width = $target_pointer_width) ]
@@ -3779,7 +3779,7 @@ macro_rules! atomic_int_ptr_sized {
3779
3779
note = "the `new` function is now preferred" ,
3780
3780
suggestion = "AtomicUsize::new(0)" ,
3781
3781
) ]
3782
- pub const ATOMIC_USIZE_INIT : Atomic < usize > = AtomicUsize :: new( 0 ) ;
3782
+ pub const ATOMIC_USIZE_INIT : AtomicUsize = AtomicUsize :: new( 0 ) ;
3783
3783
) * } ;
3784
3784
}
3785
3785
You can’t perform that action at this time.
0 commit comments