remove an extra ';' and suppress a 'variable used before its value is set' warning

This commit is contained in:
Gael Guennebaud
2012-04-11 09:49:52 +02:00
parent a3ddb14426
commit f6a5508392
3 changed files with 3 additions and 3 deletions

View File

@@ -73,7 +73,7 @@ JacobiSVD<Matrix<EIGTYPE, Dynamic, Dynamic, EIGCOLROW, Dynamic, Dynamic>, ColPiv
/* for(int i=0;i<m_diagSize;i++) if (m_singularValues.coeffRef(i) < precision) { m_nonzeroSingularValues--; m_singularValues.coeffRef(i)=RealScalar(0);}*/ \
m_isInitialized = true; \
return *this; \
};
}
EIGEN_MKL_SVD(double, double, double, d, ColMajor, LAPACK_COL_MAJOR)
EIGEN_MKL_SVD(float, float, float , s, ColMajor, LAPACK_COL_MAJOR)