From 0d634b923aa9e3bee33453f18d6a3a9f15d03d93 Mon Sep 17 00:00:00 2001 From: Mikhail Gorbushin Date: Tue, 22 Jan 2019 19:17:02 +0300 Subject: [PATCH] [routing] Remove const modifier for std::move --- routing/online_absent_fetcher.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/routing/online_absent_fetcher.cpp b/routing/online_absent_fetcher.cpp index 1b5d97e79a..3651c6633c 100644 --- a/routing/online_absent_fetcher.cpp +++ b/routing/online_absent_fetcher.cpp @@ -51,15 +51,15 @@ void OnlineAbsentCountriesFetcher::GetAbsentCountries(vector & countries m_fetcherThread->Join(); for (auto const & point : m_fetcherThread->GetRoutineAs()->GetMwmPoints()) { - string const name = m_countryFileFn(point); + string name = m_countryFileFn(point); ASSERT(!name.empty(), ()); if (name.empty() || m_countryLocalFileFn(name)) continue; countries.emplace_back(move(name)); } - m_fetcherThread.reset(); + m_fetcherThread.reset(); base::SortUnique(countries); }