2
0
mirror of https://github.com/boostorg/math.git synced 2026-01-26 06:42:12 +00:00

polynomial_gcd.hpp: Fix namespace name for gcd_range.

This commit is contained in:
jzmaddock
2018-02-16 18:07:28 +00:00
parent fc47227ae1
commit 70e67bbc2d

View File

@@ -54,7 +54,7 @@ namespace math{ namespace tools{
template <class T>
T content(polynomial<T> 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