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-02-03 12:51:21 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:37:22 +0300
commitf61f58ffcb76905218aa6ff4689922e4c8b8b015 (patch)
treebd52134d96f68be6b8b8a0e169f0cf25cc38abc9 /3party/osrm
parentc30062bd55081f2f9e357bc150f2dc751f452149 (diff)
Cross mwm routing pull comments fixes and refactoring
Diffstat (limited to '3party/osrm')
-rw-r--r--3party/osrm/osrm-backend/RoutingAlgorithms/ManyToManyRouting.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/3party/osrm/osrm-backend/RoutingAlgorithms/ManyToManyRouting.h b/3party/osrm/osrm-backend/RoutingAlgorithms/ManyToManyRouting.h
index bf4631b3a7..ab73150738 100644
--- a/3party/osrm/osrm-backend/RoutingAlgorithms/ManyToManyRouting.h
+++ b/3party/osrm/osrm-backend/RoutingAlgorithms/ManyToManyRouting.h
@@ -209,7 +209,7 @@ template <class DataFacadeT> class ManyToManyRouting final : public BasicRouting
{
for (auto edge : super::facade->GetAdjacentEdgeRange(node))
{
- const auto &data = super::facade->GetEdgeData(edge,node);
+ const auto &data = super::facade->GetEdgeData(edge, node);
const bool direction_flag = (forward_direction ? data.forward : data.backward);
if (direction_flag)
{