Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVladimir Byko-Ianko <v.bykoianko@corp.mail.ru>2016-12-20 15:42:19 +0300
committerVladimir Byko-Ianko <v.bykoianko@corp.mail.ru>2016-12-28 13:25:34 +0300
commit774f2ab5bf93508e7f828295bfe24567c8663e05 (patch)
tree5be31597a10b4c75b54824a9833883ce4ae71af6 /routing/index_graph_starter.cpp
parent89e2b9e6fef6c1de2951baa318f6ab61359ac89f (diff)
[Routing] crashfix in case of routes passing through loop edges.
Diffstat (limited to 'routing/index_graph_starter.cpp')
-rw-r--r--routing/index_graph_starter.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/routing/index_graph_starter.cpp b/routing/index_graph_starter.cpp
index 9e480c6821..327bc70e81 100644
--- a/routing/index_graph_starter.cpp
+++ b/routing/index_graph_starter.cpp
@@ -66,7 +66,6 @@ void IndexGraphStarter::RedressRoute(vector<Joint::Id> const & route,
RoadGeometry const roadGeometry = m_graph.GetGeometry().GetRoad(featureId);
- CHECK_NOT_EQUAL(pointFrom, pointTo, ("featureId =", featureId));
uint32_t const step = pointFrom < pointTo ? 1 : -1;
for (uint32_t prevPointId = pointFrom; prevPointId != pointTo; prevPointId += step)