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 'generator/search_index_builder.hpp')
-rw-r--r--generator/search_index_builder.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/generator/search_index_builder.hpp b/generator/search_index_builder.hpp
index ce647d0653..c9cc1bbdca 100644
--- a/generator/search_index_builder.hpp
+++ b/generator/search_index_builder.hpp
@@ -1,6 +1,6 @@
#pragma once
-#include "std/string.hpp"
+#include <string>
class FilesContainerR;
class Writer;
@@ -11,7 +11,7 @@ namespace indexer
// An attempt to rewrite the search index of an old mwm may result in a future crash
// when using search because this function does not update mwm's version. This results
// in version mismatch when trying to read the index.
-bool BuildSearchIndexFromDataFile(string const & filename, bool forceRebuild = false);
+bool BuildSearchIndexFromDataFile(std::string const & filename, bool forceRebuild = false);
void BuildSearchIndex(FilesContainerR & container, Writer & indexWriter);
} // namespace indexer