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/feature_sorter.hpp')
-rw-r--r--generator/feature_sorter.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/generator/feature_sorter.hpp b/generator/feature_sorter.hpp
index 9797aaea83..368a4cc4dd 100644
--- a/generator/feature_sorter.hpp
+++ b/generator/feature_sorter.hpp
@@ -7,7 +7,7 @@
#include "indexer/scales.hpp"
-#include "std/string.hpp"
+#include <string>
namespace feature
@@ -15,7 +15,7 @@ namespace feature
/// Final generation of data from input feature-dat-file.
/// @param path - path to folder with countries;
/// @param name - name of generated country;
- bool GenerateFinalFeatures(feature::GenerateInfo const & info, string const & name, int mapType);
+ bool GenerateFinalFeatures(feature::GenerateInfo const & info, std::string const & name, int mapType);
template <class PointT>
inline bool are_points_equal(PointT const & p1, PointT const & p2)
@@ -50,7 +50,7 @@ namespace feature
fabs(p.y - m_rect.minY()) <= m_eps || fabs(p.y - m_rect.maxY()) <= m_eps)
{
// points near rect should be in a result simplified vector
- return numeric_limits<double>::max();
+ return std::numeric_limits<double>::max();
}
return m2::DistanceToLineSquare<m2::PointD>::operator()(p);