Merged in angelos_m/eigen/3.3 (pull request PR-269)

Remove superfluous const's (can cause warnings on some Intel compilers)
This commit is contained in:
Gael Guennebaud
2016-12-21 08:53:16 +01:00
2 changed files with 3 additions and 3 deletions

View File

@@ -105,7 +105,7 @@ class WithFormat
}
protected:
const typename ExpressionType::Nested m_matrix;
typename ExpressionType::Nested m_matrix;
IOFormat m_format;
};