bug #329: fix typo

(grafted from b9d314ae19
)
This commit is contained in:
Gael Guennebaud 2015-01-17 21:55:33 +01:00
parent f074d43f4b
commit 0039cd9cf9

View File

@ -313,7 +313,7 @@ namespace Eigen {
using std::abs;
using std::sqrt;
const Index dim=m_S.cols();
if (abs(m_S.coeff(i+1,i)==Scalar(0)))
if (abs(m_S.coeff(i+1,i))==Scalar(0))
return;
Index z = findSmallDiagEntry(i,i+1);
if (z==i-1)