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:
authorLev Dragunov <l.dragunov@corp.mail.ru>2015-11-20 15:49:44 +0300
committerLev Dragunov <l.dragunov@corp.mail.ru>2015-11-20 15:49:44 +0300
commit64f157916e11c863b41b625567aaf4a697c9a65a (patch)
tree8c98a839aa7997a851b97b7170cb311b93106231 /routing/osrm_helpers.hpp
parentefd08d272be719844d0d69d48135a498e0108775 (diff)
Routing single node features order bugfix.
Diffstat (limited to 'routing/osrm_helpers.hpp')
-rw-r--r--routing/osrm_helpers.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/routing/osrm_helpers.hpp b/routing/osrm_helpers.hpp
index 97168e0c3e..61de9e54a2 100644
--- a/routing/osrm_helpers.hpp
+++ b/routing/osrm_helpers.hpp
@@ -59,7 +59,7 @@ private:
/// Calculates part of a node weight in the OSRM format. Projection point @segPt divides node on
/// two parts. So we find weight of a part, set by the @calcFromRight parameter.
void CalculateWeight(OsrmMappingTypes::FtSeg const & seg, m2::PointD const & segPt,
- NodeID const & nodeId, bool calcFromRight, int & weight, int & offset) const;
+ NodeID const & nodeId, int & weight, int & offset) const;
/// Returns minimal weight of the node.
EdgeWeight GetMinNodeWeight(NodeID node, m2::PointD const & point) const;