Replace instances of EIGEN_NOEXCEPT macros

This commit is contained in:
Tyler Veness
2025-04-22 00:58:47 +00:00
committed by Charles Schlosser
parent d2dce37767
commit 619be0deb6
51 changed files with 186 additions and 217 deletions

View File

@@ -100,8 +100,8 @@ class KLU : public SparseSolverBase<KLU<MatrixType_> > {
if (m_numeric) klu_free_numeric(&m_numeric, &m_common);
}
constexpr Index rows() const EIGEN_NOEXCEPT { return mp_matrix.rows(); }
constexpr Index cols() const EIGEN_NOEXCEPT { return mp_matrix.cols(); }
constexpr Index rows() const noexcept { return mp_matrix.rows(); }
constexpr Index cols() const noexcept { return mp_matrix.cols(); }
/** \brief Reports whether previous computation was successful.
*