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:
authorMaxim Pimenov <m@maps.me>2019-02-13 20:42:00 +0300
committerTatiana Yan <tatiana.kondakova@gmail.com>2019-02-15 14:06:19 +0300
commit229d8a3bcf09e37e2dcff951dc36989720eef274 (patch)
tree136b402e2ad15bcde9deb978de40ab9fc998c6c9 /search/model.hpp
parent1f2aeeb9edcf3769f569ff1472fd2d418acb0502 (diff)
[search] Got rid of most old style std/ includes.
Diffstat (limited to 'search/model.hpp')
-rw-r--r--search/model.hpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/search/model.hpp b/search/model.hpp
index 5938d8e8df..abc34b412c 100644
--- a/search/model.hpp
+++ b/search/model.hpp
@@ -2,11 +2,10 @@
#include "indexer/ftypes_matcher.hpp"
-#include "std/string.hpp"
-#include "std/vector.hpp"
-
#include "base/macros.hpp"
+#include <string>
+
class FeatureType;
namespace search
@@ -56,5 +55,5 @@ public:
Type GetType(FeatureType & feature) const;
};
-string DebugPrint(Model::Type type);
+std::string DebugPrint(Model::Type type);
} // namespace search