forked from organicmaps/organicmaps
[routing] Remove const modifier for std::move
This commit is contained in:
parent
a045da31d9
commit
0d634b923a
1 changed files with 2 additions and 2 deletions
|
@ -51,15 +51,15 @@ void OnlineAbsentCountriesFetcher::GetAbsentCountries(vector<string> & countries
|
|||
m_fetcherThread->Join();
|
||||
for (auto const & point : m_fetcherThread->GetRoutineAs<OnlineCrossFetcher>()->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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue