Fix regression introduced by last merge

This commit is contained in:
Christoph Hertzberg 2015-05-06 11:03:00 +02:00
parent 6f7f0ab6c2
commit a08df3ff34

View File

@ -296,7 +296,7 @@ class SparseLU : public internal::SparseLUImpl<typename _MatrixType::Scalar, typ
if(it.row() < j) continue; if(it.row() < j) continue;
if(it.row() == j) if(it.row() == j)
{ {
using std::log, std::abs; using std::log; using std::abs;
det += log(abs(it.value())); det += log(abs(it.value()));
break; break;
} }