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/nested_rects_cache.hpp')
-rw-r--r--search/nested_rects_cache.hpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/search/nested_rects_cache.hpp b/search/nested_rects_cache.hpp
index 829132b730..bb10d519b2 100644
--- a/search/nested_rects_cache.hpp
+++ b/search/nested_rects_cache.hpp
@@ -4,8 +4,9 @@
#include "geometry/point2d.hpp"
-#include "std/map.hpp"
-#include "std/vector.hpp"
+#include <cstdint>
+#include <map>
+#include <vector>
class DataSource;
@@ -42,8 +43,8 @@ private:
m2::PointD m_position;
bool m_valid;
- using TFeatures = vector<uint32_t>;
- using TBucket = map<MwmSet::MwmId, TFeatures>;
+ using TFeatures = std::vector<uint32_t>;
+ using TBucket = std::map<MwmSet::MwmId, TFeatures>;
// Sorted lists of features.
TBucket m_buckets[RECT_SCALE_COUNT];