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:
Diffstat (limited to 'storage')
-rw-r--r--storage/storage.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/storage/storage.cpp b/storage/storage.cpp
index ee434e349b..73709ac666 100644
--- a/storage/storage.cpp
+++ b/storage/storage.cpp
@@ -1512,7 +1512,7 @@ void Storage::LoadServerListForSession()
{
ASSERT_THREAD_CHECKER(m_threadChecker, ());
- m_downloader->GetServersList([this](auto const & urls) { PingServerList(urls); });
+ m_downloader->GetServersList([this](vector<string> const & urls) { PingServerList(urls); });
}
void Storage::LoadServerListForTesting()
@@ -1530,7 +1530,7 @@ void Storage::PingServerList(vector<string> const & urls)
return;
GetPlatform().RunTask(Platform::Thread::Network, [urls, this] {
- Pinger::Ping(urls, [this, urls](auto readyUrls) {
+ Pinger::Ping(urls, [this, urls](vector<string> readyUrls) {
ASSERT_THREAD_CHECKER(m_threadChecker, ());
if (readyUrls.empty())