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/bicycle_directions.hpp')
-rw-r--r--routing/bicycle_directions.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/routing/bicycle_directions.hpp b/routing/bicycle_directions.hpp
index da72f28372..7056428df0 100644
--- a/routing/bicycle_directions.hpp
+++ b/routing/bicycle_directions.hpp
@@ -22,7 +22,7 @@ public:
size_t m_ingoingTurnsCount;
};
- using TAdjacentEdgesMap = map<TNodeId, AdjacentEdges>;
+ using AdjacentEdgesMap = map<UniNodeId, AdjacentEdges>;
BicycleDirectionsEngine(Index const & index);
@@ -34,10 +34,10 @@ public:
private:
Index::FeaturesLoaderGuard & GetLoader(MwmSet::MwmId const & id);
- void LoadPathGeometry(FeatureID const & featureId, vector<Junction> const & path,
+ void LoadPathGeometry(UniNodeId const & uniNodeId, vector<Junction> const & path,
LoadedPathSegment & pathSegment);
- TAdjacentEdgesMap m_adjacentEdges;
+ AdjacentEdgesMap m_adjacentEdges;
TUnpackedPathSegments m_pathSegments;
Index const & m_index;
unique_ptr<Index::FeaturesLoaderGuard> m_loader;