diff options
Diffstat (limited to 'common/rational.cpp')
-rw-r--r-- | common/rational.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/rational.cpp b/common/rational.cpp index cb287869bb..f5495da3a9 100644 --- a/common/rational.cpp +++ b/common/rational.cpp @@ -107,8 +107,8 @@ Rational &Rational::operator-=(const Rational &right) { Rational &Rational::operator*=(const Rational &right) { // Cross-cancel to avoid unnecessary overflow; // the result then is automatically normalized - const int gcd1 = Common::gcd(_num, right._denom); - const int gcd2 = Common::gcd(right._num, _denom); + const int gcd1 = gcd(_num, right._denom); + const int gcd2 = gcd(right._num, _denom); _num = (_num / gcd1) * (right._num / gcd2); _denom = (_denom / gcd2) * (right._denom / gcd1); |