From 0edb1605aa45b06264e0336ccea6f049ee6f7905 Mon Sep 17 00:00:00 2001 From: Vladimir Byko-Ianko Date: Sat, 26 Nov 2016 09:54:10 +0300 Subject: [PATCH] Potential build problem fix. --- routing/index_graph.cpp | 4 ++-- 1 file 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 & edges) const +void IndexGraph::GetNeighboringEdge(RoadGeometry const & road, RoadPoint const & rp, + bool forward, vector & edges) const { pair const & neighbor = m_roadIndex.FindNeighbor(rp, forward); if (neighbor.first != Joint::kInvalidId)