2
0
mirror of https://github.com/boostorg/math.git synced 2026-01-24 18:12:09 +00:00

Fix build by using boost::integer::gcd over boost::math::gcd

This commit is contained in:
Nick
2018-02-16 10:27:21 -06:00
committed by GitHub
parent c4190aa7e2
commit f97fd25005

View File

@@ -88,7 +88,7 @@ namespace detail
template <class T>
T reduce_to_primitive(polynomial<T> &u, polynomial<T> &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;