diff options
-rw-r--r-- | common/rational.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/rational.cpp b/common/rational.cpp index 292c2ac940..6c5d44af84 100644 --- a/common/rational.cpp +++ b/common/rational.cpp @@ -250,7 +250,7 @@ int Rational::toInt() const { } double Rational::toDouble() const { - return ((double) _num) / ((double) _denom); + return ((double)_num) / ((double)_denom); } frac_t Rational::toFrac() const { |