remove warning

This commit is contained in:
Olivier Devillers 2010-10-22 14:49:31 +00:00
parent 87e5fc54bd
commit e63e278e35
1 changed files with 1 additions and 1 deletions

View File

@ -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);