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/dumper.hpp')
-rw-r--r--generator/dumper.hpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/generator/dumper.hpp b/generator/dumper.hpp
index 08d27a2b31..5424b7e82d 100644
--- a/generator/dumper.hpp
+++ b/generator/dumper.hpp
@@ -1,19 +1,19 @@
#pragma once
-#include "std/string.hpp"
+#include <string>
namespace feature
{
- void DumpTypes(string const & fPath);
- void DumpPrefixes(string const & fPath);
+ void DumpTypes(std::string const & fPath);
+ void DumpPrefixes(std::string const & fPath);
// Writes top maxTokensToShow tokens sorted by their
// frequency, i.e. by the number of features in
// an mwm that contain the token in their name.
- void DumpSearchTokens(string const & fPath, size_t maxTokensToShow);
+ void DumpSearchTokens(std::string const & fPath, size_t maxTokensToShow);
// Writes the names of all features in the locale provided by lang
// (e.g. "en", "ru", "sv"). If the locale is not recognized, writes all names
// preceded by their locales.
- void DumpFeatureNames(string const & fPath, string const & lang);
+ void DumpFeatureNames(std::string const & fPath, std::string const & lang);
}