mirror of
https://github.com/boostorg/geometry.git
synced 2026-02-11 11:52:11 +00:00
[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:
@@ -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);
|
||||
|
||||
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user