diff --git a/include/boost/math/tools/polynomial_gcd.hpp b/include/boost/math/tools/polynomial_gcd.hpp index 9ffa110ce..fd0a8c274 100644 --- a/include/boost/math/tools/polynomial_gcd.hpp +++ b/include/boost/math/tools/polynomial_gcd.hpp @@ -54,7 +54,7 @@ namespace math{ namespace tools{ template T content(polynomial const &x) { - return x ? gcd_range(x.data().begin(), x.data().end()).first : T(0); + return x ? boost::integer::gcd_range(x.data().begin(), x.data().end()).first : T(0); } // Knuth, 4.6.1