Forgot a irange fix

This commit is contained in:
Patrick Niklaus 2016-04-12 15:14:13 +02:00
parent 1554916639
commit 2b4f9feeab

View File

@ -90,7 +90,7 @@ class MatchAPI final : public RouteAPI
}
}
for (auto trace_index : util::irange(0UL, parameters.coordinates.size()))
for (auto trace_index : util::irange<std::size_t>(0UL, parameters.coordinates.size()))
{
auto matching_index = trace_idx_to_matching_idx[trace_index];
if (matching_index.NotMatched())