Fix compilation of matrix log with Map as input

This commit is contained in:
Gael Guennebaud
2017-06-07 10:51:23 +02:00
parent f2a553fb7b
commit 26e8f9171e
2 changed files with 6 additions and 7 deletions

View File

@@ -339,7 +339,7 @@ public:
typedef internal::MatrixLogarithmAtomic<DynMatrixType> AtomicType;
AtomicType atomic;
internal::matrix_function_compute<DerivedEvalTypeClean>::run(m_A, atomic, result);
internal::matrix_function_compute<typename DerivedEvalTypeClean::PlainObject>::run(m_A, atomic, result);
}
Index rows() const { return m_A.rows(); }