mirror of
https://github.com/boostorg/geometry.git
synced 2026-01-30 20:02:11 +00:00
Merge pull request #552 from awulkiew/fix/unused_params
[overlay] Fix unused parameters warnings.
This commit is contained in:
@@ -3,8 +3,8 @@
|
||||
// Copyright (c) 2007-2012 Barend Gehrels, Amsterdam, the Netherlands.
|
||||
// Copyright (c) 2017 Adam Wulkiewicz, Lodz, Poland.
|
||||
|
||||
// This file was modified by Oracle on 2015, 2017, 2018.
|
||||
// Modifications copyright (c) 2015-2018 Oracle and/or its affiliates.
|
||||
// This file was modified by Oracle on 2015, 2017, 2018, 2019.
|
||||
// Modifications copyright (c) 2015-2019 Oracle and/or its affiliates.
|
||||
|
||||
// Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle
|
||||
|
||||
@@ -161,7 +161,7 @@ struct touch_interior : public base_turn_handler
|
||||
typename DirInfo,
|
||||
typename SidePolicy
|
||||
>
|
||||
static inline void apply(UniqueSubRange1 const& range_p,
|
||||
static inline void apply(UniqueSubRange1 const& /*range_p*/,
|
||||
UniqueSubRange2 const& range_q,
|
||||
TurnInfo& ti,
|
||||
IntersectionInfo const& intersection_info,
|
||||
@@ -574,8 +574,8 @@ struct equal_opposite : public base_turn_handler
|
||||
typename IntersectionInfo
|
||||
>
|
||||
static inline void apply(
|
||||
UniqueSubRange1 const& range_p,
|
||||
UniqueSubRange2 const& range_q,
|
||||
UniqueSubRange1 const& /*range_p*/,
|
||||
UniqueSubRange2 const& /*range_q*/,
|
||||
/* by value: */ TurnInfo tp,
|
||||
OutputIterator& out,
|
||||
IntersectionInfo const& intersection_info)
|
||||
|
||||
Reference in New Issue
Block a user