mirror of https://github.com/CGAL/cgal
remove unused var warning
This commit is contained in:
parent
e1be9d2a14
commit
6832bd90c9
|
|
@ -103,7 +103,7 @@ public:
|
||||||
/// @commentheading Preconditions:
|
/// @commentheading Preconditions:
|
||||||
/// - 0 <= i < row_dimension().
|
/// - 0 <= i < row_dimension().
|
||||||
/// - 0 <= j < column_dimension().
|
/// - 0 <= j < column_dimension().
|
||||||
void set_coef(int i, int j, T val, bool new_coef = false)
|
void set_coef(int i, int j, T val, bool /* new_coef */ = false)
|
||||||
{
|
{
|
||||||
CGAL_precondition(i < row_dimension());
|
CGAL_precondition(i < row_dimension());
|
||||||
CGAL_precondition(j < column_dimension());
|
CGAL_precondition(j < column_dimension());
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue