forked from organicmaps/organicmaps
Minor speed optimization.
This commit is contained in:
parent
0c550e7abf
commit
ba5b5c90be
1 changed files with 1 additions and 1 deletions
|
@ -44,7 +44,7 @@ void ReverseGeocoder::GetNearbyStreets(MwmSet::MwmId const & id, m2::PointD cons
|
|||
|
||||
ASSERT(!name.empty(), ());
|
||||
|
||||
streets.push_back({ft.GetID(), feature::GetMinDistanceMeters(ft, center), name});
|
||||
streets.emplace_back(ft.GetID(), feature::GetMinDistanceMeters(ft, center), name);
|
||||
};
|
||||
|
||||
MwmSet::MwmHandle mwmHandle = m_index.GetMwmHandleById(id);
|
||||
|
|
Loading…
Add table
Reference in a new issue