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/generator_tests/coasts_test.cpp')
-rw-r--r--generator/generator_tests/coasts_test.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/generator/generator_tests/coasts_test.cpp b/generator/generator_tests/coasts_test.cpp
index 309cf9a86a..009857f780 100644
--- a/generator/generator_tests/coasts_test.cpp
+++ b/generator/generator_tests/coasts_test.cpp
@@ -4,12 +4,14 @@
#include "generator/feature_generator.hpp"
#include "generator/feature_helpers.hpp"
+#include "coding/pointd_to_pointu.hpp"
+
+#include "geometry/cellid.hpp"
#include "geometry/mercator.hpp"
+
#include "indexer/cell_id.hpp"
#include "indexer/scales.hpp"
-#include "geometry/cellid.hpp"
-
#include "base/logging.hpp"
using namespace std;
@@ -18,7 +20,7 @@ namespace
{
inline m2::PointU D2I(double x, double y)
{
- return PointD2PointU(m2::PointD(x, y), POINT_COORD_BITS);
+ return PointDToPointU(m2::PointD(x, y), POINT_COORD_BITS);
}
}