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