Skip to content

Commit 5351d98

Browse files
authored
Fix unused parameter warnings (#775)
1 parent f510cf2 commit 5351d98

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

include/boost/geometry/algorithms/detail/envelope/segment.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ struct envelope_segment_call_strategy<Strategy, false>
5757
{
5858
template <typename Point, typename Segment, typename Box>
5959
static inline void apply(Point const& p1, Point const& p2,
60-
Segment const& segment, Box& mbr,
60+
Segment const&, Box& mbr,
6161
Strategy const& strategy)
6262
{
6363
strategy.apply(p1, p2, mbr);

include/boost/geometry/strategies/area/cartesian.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ struct default_strategy<Geometry, cartesian_tag>
4747
template <typename CT>
4848
struct strategy_converter<strategy::area::cartesian<CT> >
4949
{
50-
static auto get(strategy::area::cartesian<CT> const& strategy)
50+
static auto get(strategy::area::cartesian<CT> const&)
5151
{
5252
return strategies::area::cartesian<CT>();
5353
}

0 commit comments

Comments
 (0)