forked from organicmaps/organicmaps
Follow up assertion fix
This commit is contained in:
parent
3ed3990358
commit
e8a08921c2
1 changed files with 1 additions and 1 deletions
|
@ -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()];
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue