Follow up assertion fix

This commit is contained in:
Lev Dragunov 2015-04-16 14:19:17 +03:00 committed by Alex Zolotarev
parent 3ed3990358
commit e8a08921c2

View file

@ -139,7 +139,7 @@ void FeaturesRoadGraph::GetNearestTurns(RoadPos const & pos, vector<PossibleTurn
if (fc.m_speed <= 0.0)
return;
ASSERT_GREATER_OR_EQUAL(numPoints, 2, ("Incorrect road - only", fc.m_points.size(), "point(s)."));
ASSERT_GREATER_OR_EQUAL(fc.m_points.size(), 2, ("Incorrect road - only", fc.m_points.size(), "point(s)."));
m2::PointD const point = fc.m_points[pos.GetSegStartPointId()];