From 7d9bb90f150aad30fc584ecc07f828f15828a495 Mon Sep 17 00:00:00 2001 From: Charles Schlosser Date: Mon, 15 May 2023 16:56:47 +0000 Subject: [PATCH] SVD: fix numerous compiler warnings / failures --- Eigen/src/SVD/SVDBase.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Eigen/src/SVD/SVDBase.h b/Eigen/src/SVD/SVDBase.h index f01c7a92f..10a6d30ff 100644 --- a/Eigen/src/SVD/SVDBase.h +++ b/Eigen/src/SVD/SVDBase.h @@ -356,7 +356,10 @@ protected: * Default constructor of SVDBase */ SVDBase() - : m_info(Success), + : m_matrixU(MatrixUType()), + m_matrixV(MatrixVType()), + m_singularValues(SingularValuesType()), + m_info(Success), m_isInitialized(false), m_isAllocated(false), m_usePrescribedThreshold(false),