mirror of
https://github.com/boostorg/geometry.git
synced 2026-02-09 23:22:10 +00:00
[algorithms][is_valid] remove commented variable names
This commit is contained in:
@@ -46,7 +46,7 @@ struct has_valid_corners
|
||||
template <typename Box>
|
||||
struct has_valid_corners<Box, 0>
|
||||
{
|
||||
static inline bool apply(Box const& /*box*/)
|
||||
static inline bool apply(Box const&)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
@@ -51,8 +51,8 @@ inline void debug_print_complement_graph(OutputStream& os,
|
||||
}
|
||||
#else
|
||||
template <typename OutputStream, typename Vertex>
|
||||
void debug_print_complement_graph(OutputStream& /*os*/,
|
||||
complement_graph<Vertex> const& /*graph*/)
|
||||
void debug_print_complement_graph(OutputStream&,
|
||||
complement_graph<Vertex> const&)
|
||||
{
|
||||
}
|
||||
#endif
|
||||
|
||||
@@ -53,7 +53,7 @@ inline void debug_print_turns(TurnIterator first, TurnIterator beyond)
|
||||
}
|
||||
#else
|
||||
template <typename TurnIterator>
|
||||
inline void debug_print_turns(TurnIterator /*first*/, TurnIterator /*beyond*/)
|
||||
inline void debug_print_turns(TurnIterator, TurnIterator)
|
||||
{}
|
||||
#endif // BOOST_GEOMETRY_TEST_DEBUG
|
||||
|
||||
|
||||
Reference in New Issue
Block a user