Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'search/locality_finder.cpp')
-rw-r--r--search/locality_finder.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/search/locality_finder.cpp b/search/locality_finder.cpp
index 11c479a63c..4df74233d2 100644
--- a/search/locality_finder.cpp
+++ b/search/locality_finder.cpp
@@ -1,5 +1,6 @@
#include "search/locality_finder.hpp"
-#include "search/v2/mwm_context.hpp"
+
+#include "search/mwm_context.hpp"
#include "indexer/ftypes_matcher.hpp"
@@ -126,7 +127,7 @@ void LocalityFinder::UpdateCache(Cache & cache, m2::PointD const & pt) const
if (handle.IsAlive() && value->GetHeader().GetType() == feature::DataHeader::world)
{
cache.m_rect = rect;
- v2::MwmContext(move(handle)).ForEachFeature(rect, DoLoader(*this, cache));
+ MwmContext(move(handle)).ForEachFeature(rect, DoLoader(*this, cache));
break;
}
}