Silence unused parameter warning from GCC/Clang.

This commit is contained in:
Patrick J. LoPresti
2016-10-21 14:53:10 -07:00
parent 28c9d63b2d
commit decd1dad72

View File

@@ -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();
}