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:
authorДобрый Ээх <dobriy-eeh@users.noreply.github.com>2016-11-26 09:59:38 +0300
committerGitHub <noreply@github.com>2016-11-26 09:59:38 +0300
commit3b1d1a5cbc6c8f9e2a05deba218f1347af4e66d6 (patch)
tree7268c94b7b30c9ff48fd911dfc5b0aab59958fcf
parent4492f89b9d7098208943e720c91c11e1ea3b0b45 (diff)
parent0edb1605aa45b06264e0336ccea6f049ee6f7905 (diff)
Merge pull request #4816 from bykoianko/master-android-buildfixbeta-501beta-500
Potential build problem fix.
-rw-r--r--routing/index_graph.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/routing/index_graph.cpp b/routing/index_graph.cpp
index ae316a57af..39e8cd30ce 100644
--- a/routing/index_graph.cpp
+++ b/routing/index_graph.cpp
@@ -66,8 +66,8 @@ void IndexGraph::GetNeighboringEdges(RoadPoint const & rp, bool isOutgoing,
GetNeighboringEdge(road, rp, true /* forward */, edges);
}
-inline void IndexGraph::GetNeighboringEdge(RoadGeometry const & road, RoadPoint const & rp,
- bool forward, vector<JointEdge> & edges) const
+void IndexGraph::GetNeighboringEdge(RoadGeometry const & road, RoadPoint const & rp,
+ bool forward, vector<JointEdge> & edges) const
{
pair<Joint::Id, uint32_t> const & neighbor = m_roadIndex.FindNeighbor(rp, forward);
if (neighbor.first != Joint::kInvalidId)