mirror of https://github.com/CGAL/cgal
remove warning
This commit is contained in:
parent
87e5fc54bd
commit
e63e278e35
|
|
@ -79,7 +79,7 @@ Gaussian_elimination(const Matrix &M,
|
|||
// Total pivoting, without looking for the maximum entry
|
||||
for (i=k,j=k;
|
||||
j<cdim && U[i][j] == FT(0);
|
||||
(++i==dim)? ++j,i=k : 0 ) {}
|
||||
(void)((++i==dim)? ++j,i=k : 0 )) {}
|
||||
CGAL_KD_TRACEN("before swap [k="<<k<<"] :");
|
||||
CGAL_KD_TRACEN(" found i="<<i<<" and j="<<j);
|
||||
CGAL_KD_TRACEV(U);
|
||||
|
|
|
|||
Loading…
Reference in New Issue