Skip to content

Commit e9f892a

Browse files
committed
side-step potentially panic'ing negate in fn abs.
1 parent c34fa8b commit e9f892a

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/libcore/num/mod.rs

+5-1
Original file line numberDiff line numberDiff line change
@@ -1321,7 +1321,11 @@ macro_rules! int_impl {
13211321
#[stable(feature = "rust1", since = "1.0.0")]
13221322
#[inline]
13231323
pub fn abs(self) -> $T {
1324-
if self.is_negative() { -self } else { self }
1324+
if self.is_negative() {
1325+
self.wrapping_neg()
1326+
} else {
1327+
self
1328+
}
13251329
}
13261330

13271331
/// Returns a number representing sign of `self`.

0 commit comments

Comments
 (0)