From decd1dad72aae0c23f6367eb05a6b6a6ee29deed Mon Sep 17 00:00:00 2001 From: "Patrick J. LoPresti" Date: Fri, 21 Oct 2016 14:53:10 -0700 Subject: [PATCH] Silence unused parameter warning from GCC/Clang. --- .../boost/geometry/algorithms/detail/overlay/traversal.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/geometry/algorithms/detail/overlay/traversal.hpp b/include/boost/geometry/algorithms/detail/overlay/traversal.hpp index 78612bca1..ae292f205 100644 --- a/include/boost/geometry/algorithms/detail/overlay/traversal.hpp +++ b/include/boost/geometry/algorithms/detail/overlay/traversal.hpp @@ -152,8 +152,8 @@ struct traversal } } - inline bool is_visited(turn_type const& turn, turn_operation_type const& op, - signed_size_type turn_index, int op_index) const + inline bool is_visited(turn_type const& /*turn*/, turn_operation_type const& op, + signed_size_type /*turn_index*/, int /*op_index*/) const { return op.visited.visited(); }