mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
Fix several uninitialized member from ctor
This commit is contained in:
@@ -110,7 +110,7 @@ public:
|
||||
* The default constructor is useful in cases in which the user intends to
|
||||
* perform decompositions via BDCSVD::compute(const MatrixType&).
|
||||
*/
|
||||
BDCSVD() : m_algoswap(16), m_numIters(0)
|
||||
BDCSVD() : m_algoswap(16), m_isTranspose(false), m_compU(false), m_compV(false), m_numIters(0)
|
||||
{}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user