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_support/test_feature.hpp')
-rw-r--r--generator/generator_tests_support/test_feature.hpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/generator/generator_tests_support/test_feature.hpp b/generator/generator_tests_support/test_feature.hpp
index f909b0e731..23df5befed 100644
--- a/generator/generator_tests_support/test_feature.hpp
+++ b/generator/generator_tests_support/test_feature.hpp
@@ -5,6 +5,7 @@
#include "geometry/point2d.hpp"
+#include <cstdint>
#include <string>
#include <utility>
#include <vector>
@@ -44,12 +45,12 @@ protected:
TestFeature(std::string const & name, std::string const & lang);
TestFeature(m2::PointD const & center, std::string const & name, std::string const & lang);
- TestFeature(vector<m2::PointD> const & area, std::string const & name,
+ TestFeature(vector<m2::PointD> const & boundary, std::string const & name,
std::string const & lang);
uint64_t const m_id;
m2::PointD const m_center;
- vector<m2::PointD> const m_area;
+ vector<m2::PointD> const m_boundary;
Type const m_type;
std::string const m_name;
std::string const m_lang;