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-07-29 10:01:49 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:58:40 +0300
commit8accabb3a272ee484dcca5eaa061e8f5ff705f11 (patch)
tree7d1d5a3e6986f3259e24e7a95c8aee380cb26722 /pedestrian_routing_benchmarks
parent1f36eb605532726e00ee75f582bb20df40b8b9b3 (diff)
PR fixes
Diffstat (limited to 'pedestrian_routing_benchmarks')
-rw-r--r--pedestrian_routing_benchmarks/pedestrian_routing_benchmarks.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/pedestrian_routing_benchmarks/pedestrian_routing_benchmarks.cpp b/pedestrian_routing_benchmarks/pedestrian_routing_benchmarks.cpp
index 9af9351daa..1fd10f0de6 100644
--- a/pedestrian_routing_benchmarks/pedestrian_routing_benchmarks.cpp
+++ b/pedestrian_routing_benchmarks/pedestrian_routing_benchmarks.cpp
@@ -69,8 +69,7 @@ unique_ptr<routing::IRouter> CreatePedestrianAStarTestRouter(Index & index)
unique_ptr<routing::IRouter> CreatePedestrianAStarBidirectionalTestRouter(Index & index)
{
unique_ptr<routing::IVehicleModelFactory> vehicleModelFactory(new SimplifiedPedestrianModelFactory());
- unique_ptr<routing::IRoutingAlgorithm> algorithm(
- new routing::AStarBidirectionalRoutingAlgorithm());
+ unique_ptr<routing::IRoutingAlgorithm> algorithm(new routing::AStarBidirectionalRoutingAlgorithm());
unique_ptr<routing::IRouter> router(new routing::RoadGraphRouter("test-astar-bidirectional-pedestrian", index, move(vehicleModelFactory), move(algorithm), nullptr));
return router;
}