remove unused var warning

This commit is contained in:
Sébastien Loriot 2012-11-28 10:57:16 +01:00
parent e1be9d2a14
commit 6832bd90c9
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ public:
/// @commentheading Preconditions:
/// - 0 <= i < row_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(j < column_dimension());