Fix warning

This commit is contained in:
Bjørn Erik Jensen 2018-09-11 11:15:27 +02:00
parent 02844bc49f
commit ccd196b52c

View File

@ -2361,7 +2361,7 @@ std::vector<SubSegmentIntersectionInfo> spiltIntersectionSegmentsToMaxLength(con
if (!pathGeometry) return out;
for (int i = 0; i < intersections.size(); i++)
for (size_t i = 0; i < intersections.size(); i++)
{
const auto& intersection = intersections[i];
double segLen = intersection.endMD - intersection.startMD;