From 70e67bbc2d1bc090798d6d79fc0dbbd82ad2b6f3 Mon Sep 17 00:00:00 2001 From: jzmaddock Date: Fri, 16 Feb 2018 18:07:28 +0000 Subject: [PATCH] polynomial_gcd.hpp: Fix namespace name for gcd_range. --- include/boost/math/tools/polynomial_gcd.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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