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-17 16:37:24 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:56:54 +0300
commit09b082083df1332e668766294b8b3fa4d82a4e40 (patch)
tree882b18e04d90b84814f036f47da5ee8381c1a25c /integration_tests
parent56228f5257c70b1fbd882d6995e8ef67bf36e6c3 (diff)
Add routing progress fn
Diffstat (limited to 'integration_tests')
-rw-r--r--integration_tests/routing_test_tools.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/integration_tests/routing_test_tools.cpp b/integration_tests/routing_test_tools.cpp
index 4d45a68d3f..317785cd7e 100644
--- a/integration_tests/routing_test_tools.cpp
+++ b/integration_tests/routing_test_tools.cpp
@@ -98,7 +98,7 @@ namespace integration
shared_ptr<IRouter> CreatePedestrianRouter(Index & index)
{
- unique_ptr<IRouter> router = CreatePedestrianAStarBidirectionalRouter(index, nullptr);
+ unique_ptr<IRouter> router = CreatePedestrianAStarBidirectionalRouter(index, nullptr, nullptr);
return shared_ptr<IRouter>(move(router));
}