More strict conditions for Route::m_streets.

This commit is contained in:
Vladimir Byko-Ianko 2016-11-03 19:26:19 +03:00
parent 12934d1ea9
commit cbf1ea1081

View file

@ -365,7 +365,7 @@ void Route::AppendRoute(Route const & route)
ASSERT(!m_turns.empty(), ());
ASSERT(!m_times.empty(), ());
if (!m_streets.empty())
ASSERT_LESS(m_streets.back().first, m_poly.GetPolyline().GetSize(), ());
ASSERT_LESS(m_streets.back().first + 1, m_poly.GetPolyline().GetSize(), ());
// Remove road end point and turn instruction.
ASSERT_LESS(MercatorBounds::DistanceOnEarth(m_poly.End().m_pt, route.m_poly.Begin().m_pt),