From 6832bd90c97fd29ed7733bd0908d92ca0cc2eeb5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Wed, 28 Nov 2012 10:57:16 +0100 Subject: [PATCH] remove unused var warning --- Solver_interface/include/CGAL/Eigen_matrix.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Solver_interface/include/CGAL/Eigen_matrix.h b/Solver_interface/include/CGAL/Eigen_matrix.h index 3ab7a4c7517..ea8a0150998 100644 --- a/Solver_interface/include/CGAL/Eigen_matrix.h +++ b/Solver_interface/include/CGAL/Eigen_matrix.h @@ -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());