diff options
Diffstat (limited to 'tools/source/generic')
-rw-r--r-- | tools/source/generic/fract.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/source/generic/fract.cxx b/tools/source/generic/fract.cxx index bc9bef467e86..afcb2e60ba42 100644 --- a/tools/source/generic/fract.cxx +++ b/tools/source/generic/fract.cxx @@ -30,6 +30,7 @@ #include <algorithm> #include <cmath> +#include <boost/math/common_factor_rt.hpp> #include <boost/rational.hpp> template<typename T> @@ -180,8 +181,8 @@ namespace T den = r.denominator(); // Avoid overflow and preserve normalization - T gcd1 = boost::integer::gcd(i.numerator(), den); - T gcd2 = boost::integer::gcd(num, i.denominator()); + T gcd1 = boost::math::gcd(i.numerator(), den); + T gcd2 = boost::math::gcd(num, i.denominator()); bool fail = false; fail |= o3tl::checked_multiply(i.numerator() / gcd1, num / gcd2, num); |