Much more convenient, less over-engineered NumTraits. Done during this KDE-Edu weekend.

This commit is contained in:
Benoit Jacob
2007-12-02 18:32:59 +00:00
parent 2fdd067d9e
commit e05f29191e
10 changed files with 193 additions and 149 deletions

View File

@@ -52,7 +52,7 @@ template<typename MatrixType> class Conjugate
Scalar _read(int row, int col) const
{
return NumTraits<Scalar>::conj(m_matrix.read(row, col));
return conj(m_matrix.read(row, col));
}
protected: