From f97fd25005ab720412da23cf23e59964d09767a4 Mon Sep 17 00:00:00 2001 From: Nick Date: Fri, 16 Feb 2018 10:27:21 -0600 Subject: [PATCH] Fix build by using `boost::integer::gcd` over `boost::math::gcd` --- 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 31b1fbcb3..9ffa110ce 100644 --- a/include/boost/math/tools/polynomial_gcd.hpp +++ b/include/boost/math/tools/polynomial_gcd.hpp @@ -88,7 +88,7 @@ namespace detail template T reduce_to_primitive(polynomial &u, polynomial &v) { - using boost::math::gcd; + using boost::integer::gcd; T const u_cont = content(u), v_cont = content(v); u /= u_cont; v /= v_cont;