Skip to content

Commit

Permalink
Fix -Wunused-parameter warning
Browse files Browse the repository at this point in the history
  • Loading branch information
georgthegreat authored and barendgehrels committed Aug 24, 2023
1 parent 3755fab commit 30fa566
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions include/boost/geometry/algorithms/detail/relate/box_areal.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ struct box_areal
}

template <typename Result, typename Strategy>
static inline void apply(Box const& box, Areal const& areal,
Result& result,
Strategy const& strategy,
static inline void apply(Box const& /* box */, Areal const& /* areal */,
Result& /* result */,
Strategy const& /* strategy */,
std::false_type /*is_cartesian*/)
{
BOOST_GEOMETRY_STATIC_ASSERT_FALSE(
Expand Down

0 comments on commit 30fa566

Please sign in to comment.