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/features_layer.hpp')
-rw-r--r--search/features_layer.hpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/search/features_layer.hpp b/search/features_layer.hpp
index fa695f956f..5610278d07 100644
--- a/search/features_layer.hpp
+++ b/search/features_layer.hpp
@@ -5,7 +5,8 @@
#include "base/string_utils.hpp"
-#include "std/vector.hpp"
+#include <cstdint>
+#include <vector>
namespace search
{
@@ -19,7 +20,7 @@ struct FeaturesLayer
void Clear();
// Non-owning ptr to a sorted vector of features.
- vector<uint32_t> const * m_sortedFeatures;
+ std::vector<uint32_t> const * m_sortedFeatures;
strings::UniString m_subQuery;