Merge pull request #3020 from afabri/CGAL-VC2017permissive-GF

Fix compilation error with VC2017 and -permissive-
This commit is contained in:
Laurent Rineau 2018-04-24 17:33:05 +02:00
commit dab01e9d20
1 changed files with 1 additions and 1 deletions

View File

@ -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));