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 <bykoianko@gmail.com>2017-01-11 17:11:44 +0300
committerGitHub <noreply@github.com>2017-01-11 17:11:44 +0300
commit51ca85539e96b77e86c58f9ded27473a44dc52d6 (patch)
treead3914c4f4fd0086973806e42f0cde520948e518 /routing/single_mwm_router.hpp
parent9f286d9eebca345db6ad816a25a1d19e1af46cf0 (diff)
parentb43dd4614482bbb1b6ed70055a56edb4d81d3937 (diff)
Merge pull request #5086 from dobriy-eeh/invert-index-graph
[routing] Invert index graph
Diffstat (limited to 'routing/single_mwm_router.hpp')
-rw-r--r--routing/single_mwm_router.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/routing/single_mwm_router.hpp b/routing/single_mwm_router.hpp
index 321dcd1ad4..16615d4cd8 100644
--- a/routing/single_mwm_router.hpp
+++ b/routing/single_mwm_router.hpp
@@ -46,7 +46,7 @@ private:
bool FindClosestEdge(MwmSet::MwmId const & mwmId, m2::PointD const & point,
Edge & closestEdge) const;
bool LoadIndex(MwmSet::MwmId const & mwmId, string const & country, IndexGraph & graph);
- bool BuildRoute(MwmSet::MwmId const & mwmId, vector<Joint::Id> const & joints,
+ bool BuildRoute(MwmSet::MwmId const & mwmId, vector<Segment> const & segments,
RouterDelegate const & delegate, IndexGraphStarter & starter,
Route & route) const;