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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user