[get_turns][relate][test][index] Fix unused variable warnings.

In the rtree/pack_create replace (void)variable to boost::ignore_unused_variable_warning().
This commit is contained in:
Adam Wulkiewicz
2014-05-17 14:10:34 +02:00
parent 422c6c7129
commit d0cf100a65
9 changed files with 23 additions and 25 deletions

View File

@@ -38,7 +38,7 @@ void check_geometry(Geometry const& geometry, std::string const& expected)
}
template <typename Geometry, typename Points>
void check_assign_points(Points const& points, std::string const& expected)
void check_assign_points(Points const& points, std::string const& /*expected*/)
{
Geometry geometry;
bg::assign_points(geometry, points);

View File

@@ -27,7 +27,7 @@
template <typename Geometry, typename Hull>
void check_convex_hull(Geometry const& geometry, Hull const& hull,
std::size_t size_original, std::size_t size_hull,
std::size_t /*size_original*/, std::size_t size_hull,
double expected_area, bool reverse)
{
std::size_t n = bg::num_points(hull);