remove warning

trivial bugfix for master
This commit is contained in:
Sébastien Loriot 2015-02-13 11:39:30 +01:00
parent ba72c8b635
commit f4944b0edd
1 changed files with 2 additions and 0 deletions

View File

@ -38,6 +38,7 @@
#include <CGAL/OpenNL/full_vector.h>
#include <CGAL/assertions.h>
#include <CGAL/use.h>
#include <vector>
#include <cstdlib>
@ -149,6 +150,7 @@ public:
// (added for SparseLinearAlgebraTraits_d::Matrix concept)
// WARNING: this class supports square matrices only
SparseMatrix (unsigned int rows, unsigned int columns ) {
CGAL_USE(rows);
CGAL_assertion(rows == columns);
CGAL_assertion(columns > 0);
dimension_ = columns ;