use Self alias in place of macros

This commit is contained in:
Lzu Tao 2019-12-15 06:07:46 +00:00
parent a605441e04
commit 7bf55f4aa5
2 changed files with 3 additions and 3 deletions

View File

@ -67,7 +67,7 @@ assert_eq!(size_of::<Option<core::num::", stringify!($Ty), ">>(), size_of::<", s
)] )]
#[inline] #[inline]
pub const unsafe fn new_unchecked(n: $Int) -> Self { pub const unsafe fn new_unchecked(n: $Int) -> Self {
$Ty(n) Self(n)
} }
/// Creates a non-zero if the given value is not zero. /// Creates a non-zero if the given value is not zero.
@ -76,7 +76,7 @@ assert_eq!(size_of::<Option<core::num::", stringify!($Ty), ">>(), size_of::<", s
pub fn new(n: $Int) -> Option<Self> { pub fn new(n: $Int) -> Option<Self> {
if n != 0 { if n != 0 {
// SAFETY: we just checked that there's no `0` // SAFETY: we just checked that there's no `0`
Some(unsafe { $Ty(n) }) Some(unsafe { Self(n) })
} else { } else {
None None
} }

View File

@ -1263,7 +1263,7 @@ let atomic_forty_two = ", stringify!($atomic_type), "::new(42);
#[$stable] #[$stable]
#[cfg_attr(not(bootstrap), $const_stable)] #[cfg_attr(not(bootstrap), $const_stable)]
pub const fn new(v: $int_type) -> Self { pub const fn new(v: $int_type) -> Self {
$atomic_type {v: UnsafeCell::new(v)} Self {v: UnsafeCell::new(v)}
} }
} }