mirror of https://github.com/CGAL/cgal
Fix for Windows 'min/max' bug
This commit is contained in:
parent
6f1f044fd6
commit
2bfc6535bf
|
|
@ -311,7 +311,7 @@ namespace CGAL {
|
||||||
typename Polynomial_traits_d::Get_coefficient coeff;
|
typename Polynomial_traits_d::Get_coefficient coeff;
|
||||||
|
|
||||||
std::vector<Polynomial> sres;
|
std::vector<Polynomial> sres;
|
||||||
int q = std::min(degree(Q),degree(P));
|
int q = (std::min)(degree(Q),degree(P));
|
||||||
|
|
||||||
CGAL::internal::prs_polynomial_subresultants<Polynomial_traits_d>
|
CGAL::internal::prs_polynomial_subresultants<Polynomial_traits_d>
|
||||||
(P,Q,std::back_inserter(sres));
|
(P,Q,std::back_inserter(sres));
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue