bug #1600: initialize m_info to InvalidInput by default, even though m_info is not accessible until it has been initialized (assert)

This commit is contained in:
Gael Guennebaud 2018-09-18 21:24:48 +02:00
parent 1f0c941c3d
commit 3e8188fc77

View File

@ -121,6 +121,7 @@ template<typename _MatrixType> class SelfAdjointEigenSolver
: m_eivec(),
m_eivalues(),
m_subdiag(),
m_info(InvalidInput),
m_isInitialized(false)
{ }