This commit is contained in:
Łukasz Jan Niemier 2016-03-11 10:24:10 +01:00
parent 7c0ab30bdc
commit 72fa7ece48
1 changed files with 1 additions and 1 deletions

View File

@ -275,7 +275,7 @@ macro_rules! impl_integer_for_isize {
#[inline]
fn lcm(&self, other: &Self) -> Self {
// should not have to recalculate abs
((*self * *other) / self.gcd(other)).abs()
(*self * (*other / self.gcd(other))).abs()
}
/// Deprecated, use `is_multiple_of` instead.