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 {
@@ -3772,7 +3772,7 @@ macro_rules! atomic_int_ptr_sized {
3772
3772
note = "the `new` function is now preferred" ,
3773
3773
suggestion = "AtomicIsize::new(0)" ,
3774
3774
) ]
3775
- pub const ATOMIC_ISIZE_INIT : Atomic < isize > = AtomicIsize :: new( 0 ) ;
3775
+ pub const ATOMIC_ISIZE_INIT : AtomicIsize = AtomicIsize :: new( 0 ) ;
3776
3776
3777
3777
/// An [`AtomicUsize`] initialized to `0`.
3778
3778
#[ cfg( target_pointer_width = $target_pointer_width) ]
@@ -3782,7 +3782,7 @@ macro_rules! atomic_int_ptr_sized {
3782
3782
note = "the `new` function is now preferred" ,
3783
3783
suggestion = "AtomicUsize::new(0)" ,
3784
3784
) ]
3785
- pub const ATOMIC_USIZE_INIT : Atomic < usize > = AtomicUsize :: new( 0 ) ;
3785
+ pub const ATOMIC_USIZE_INIT : AtomicUsize = AtomicUsize :: new( 0 ) ;
3786
3786
) * } ;
3787
3787
}
3788
3788
You can’t perform that action at this time.
0 commit comments