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
path: root/search
diff options
context:
space:
mode:
authorMaxim Pimenov <m@maps.me>2018-07-24 19:31:29 +0300
committerVlad Mihaylenko <vxmihaylenko@gmail.com>2018-07-25 18:49:59 +0300
commit7a1c013f934e89411b304b81686541d4c95fcb51 (patch)
treeeaf900ffdbbc2f78fe4930224a2b072617818f65 /search
parent4632c8a8b5f07818297f1962a14c696f5366381a (diff)
Review fixes.
Diffstat (limited to 'search')
-rw-r--r--search/feature_offset_match.hpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/search/feature_offset_match.hpp b/search/feature_offset_match.hpp
index d32d138fb9..862db56327 100644
--- a/search/feature_offset_match.hpp
+++ b/search/feature_offset_match.hpp
@@ -1,4 +1,5 @@
#pragma once
+
#include "search/common.hpp"
#include "search/query_params.hpp"
#include "search/search_index_values.hpp"
@@ -109,7 +110,7 @@ class OffsetIntersector
public:
explicit OffsetIntersector(Filter const & filter)
- : m_filter(filter), m_set(my::make_unique<Set>())
+ : m_filter(filter), m_set(std::make_unique<Set>())
{
}
@@ -125,7 +126,7 @@ public:
void NextStep()
{
if (!m_prevSet)
- m_prevSet = my::make_unique<Set>();
+ m_prevSet = std::make_unique<Set>();
m_prevSet.swap(m_set);
m_set->clear();