Minor speed optimization.

This commit is contained in:
Alex Zolotarev 2016-04-28 19:02:51 +03:00
parent 0c550e7abf
commit ba5b5c90be

View file

@ -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);