mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
Replace instances of EIGEN_NOEXCEPT macros
This commit is contained in:
committed by
Charles Schlosser
parent
d2dce37767
commit
619be0deb6
@@ -135,9 +135,9 @@ class IncompleteLUT : public SparseSolverBase<IncompleteLUT<Scalar_, StorageInde
|
||||
/** \brief Extraction Method for U-Factor */
|
||||
const FactorType matrixU() const;
|
||||
|
||||
constexpr Index rows() const EIGEN_NOEXCEPT { return m_lu.rows(); }
|
||||
constexpr Index rows() const noexcept { return m_lu.rows(); }
|
||||
|
||||
constexpr Index cols() const EIGEN_NOEXCEPT { return m_lu.cols(); }
|
||||
constexpr Index cols() const noexcept { return m_lu.cols(); }
|
||||
|
||||
/** \brief Reports whether previous computation was successful.
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user