From 101fbcca909410dc3a168a02a21bfc2a6f0c26fc Mon Sep 17 00:00:00 2001 From: Dennis Luxen Date: Fri, 20 Sep 2013 13:13:06 +0200 Subject: [PATCH] further refactoring of variable names --- RoutingAlgorithms/BasicRoutingInterface.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RoutingAlgorithms/BasicRoutingInterface.h b/RoutingAlgorithms/BasicRoutingInterface.h index 31fbe0bfa..e09b2236e 100644 --- a/RoutingAlgorithms/BasicRoutingInterface.h +++ b/RoutingAlgorithms/BasicRoutingInterface.h @@ -168,7 +168,7 @@ public: BOOST_ASSERT_MSG(edge_weight != INT_MAX, "edge id invalid"); const typename DataFacadeT::EdgeData& ed = facade->GetEdgeData(smaller_edge_id); - if(ed.shortcut) {//unpack + if( ed.shortcut ) {//unpack const NodeID middle_node_id = ed.id; //again, we need to this in reversed order recursion_stack.push(std::make_pair(middle_node_id, edge.second));