mirror of https://github.com/CGAL/cgal
Merge pull request #3020 from afabri/CGAL-VC2017permissive-GF
Fix compilation error with VC2017 and -permissive-
This commit is contained in:
commit
dab01e9d20
|
|
@ -480,7 +480,7 @@ struct Tracer_polyline_incomplete {
|
|||
}
|
||||
|
||||
CGAL_assertion(la >= 0 && la < n);
|
||||
CGAL_assertion(r.first < la && r.second > la);
|
||||
CGAL_assertion( (r.first < la) && (r.second > la) );
|
||||
*out++ = OutputIteratorValueType(r.first, la, r.second);
|
||||
|
||||
ranges.push(std::make_pair(r.first, la));
|
||||
|
|
|
|||
Loading…
Reference in New Issue