From ba5b5c90be79bee842006c7465f49754ac12f845 Mon Sep 17 00:00:00 2001 From: Alex Zolotarev Date: Thu, 28 Apr 2016 19:02:51 +0300 Subject: [PATCH] Minor speed optimization. --- search/reverse_geocoder.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/search/reverse_geocoder.cpp b/search/reverse_geocoder.cpp index dda9d7ab25..4cccc1ed03 100644 --- a/search/reverse_geocoder.cpp +++ b/search/reverse_geocoder.cpp @@ -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);