fix SealedInt::is_negative

This commit is contained in:
Trevor Spiteri 2019-01-31 02:06:22 +01:00
parent f7d2fc18e0
commit 5d543fef64
1 changed files with 1 additions and 1 deletions

View File

@ -134,7 +134,7 @@ macro_rules! sealed_int {
#[inline] #[inline]
fn is_negative(self) -> bool { fn is_negative(self) -> bool {
false self < 0
} }
#[inline] #[inline]