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/token_slice.hpp')
-rw-r--r--search/token_slice.hpp13
1 files changed, 6 insertions, 7 deletions
diff --git a/search/token_slice.hpp b/search/token_slice.hpp
index cced7e4b07..2438a96456 100644
--- a/search/token_slice.hpp
+++ b/search/token_slice.hpp
@@ -7,9 +7,9 @@
#include "base/assert.hpp"
-#include "std/cstdint.hpp"
-#include "std/string.hpp"
-#include "std/vector.hpp"
+#include <cstddef>
+#include <string>
+#include <vector>
namespace search
{
@@ -56,7 +56,7 @@ public:
private:
QueryParams const & m_params;
- vector<size_t> m_indexes;
+ std::vector<size_t> m_indexes;
};
class QuerySlice : public StringSliceBase
@@ -97,8 +97,7 @@ private:
QueryParams::String const & m_prefix;
};
-string DebugPrint(TokenSlice const & slice);
-
-string DebugPrint(TokenSliceNoCategories const & slice);
+std::string DebugPrint(TokenSlice const & slice);
+std::string DebugPrint(TokenSliceNoCategories const & slice);
} // namespace search