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:
Diffstat (limited to 'routing/road_graph_router.cpp')
-rw-r--r--routing/road_graph_router.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/routing/road_graph_router.cpp b/routing/road_graph_router.cpp
index cbb0cea273..02a64b82b4 100644
--- a/routing/road_graph_router.cpp
+++ b/routing/road_graph_router.cpp
@@ -110,7 +110,7 @@ void RoadGraphRouter::CalculateRoute(m2::PointD const & startPt, ReadyCallback c
vector<RoadPos> routePos;
CalculateRoute(startPos, routePos);
- Route route;
+ Route route(GetName());
m_pRoadGraph->ReconstructPath(routePos, route);
callback(route);
}