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-08-10 11:05:06 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 03:00:22 +0300
commitcd65decf6c664d7ef0c374d9e675dd60fbd46d0c (patch)
tree711f9c62cf4fa78b0656ba3fd724f79110f07451 /integration_tests
parent30b30063a6ca50d918e6a44e5435ed3243a7cf82 (diff)
PR fixes
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 5a262ea7fc..fd162231dd 100644
--- a/integration_tests/routing_test_tools.cpp
+++ b/integration_tests/routing_test_tools.cpp
@@ -139,7 +139,7 @@ namespace integration
PedestrianRouterComponents(vector<LocalCountryFile> const & localFiles)
: m_featuresFetcher(CreateFeaturesFetcher(localFiles)),
m_searchEngine(CreateSearchEngine(m_featuresFetcher)),
- m_router(CreatePedestrianRouter(m_featuresFetcher->GetIndex(), *m_searchEngine.get()))
+ m_router(CreatePedestrianRouter(m_featuresFetcher->GetIndex(), *m_searchEngine))
{
}
IRouter * GetRouter() const override { return m_router.get(); }