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
@@ -218,10 +218,10 @@ class IterativeSolverBase : public SparseSolverBase<Derived> {
|
||||
}
|
||||
|
||||
/** \internal */
|
||||
constexpr Index rows() const EIGEN_NOEXCEPT { return matrix().rows(); }
|
||||
constexpr Index rows() const noexcept { return matrix().rows(); }
|
||||
|
||||
/** \internal */
|
||||
constexpr Index cols() const EIGEN_NOEXCEPT { return matrix().cols(); }
|
||||
constexpr Index cols() const noexcept { return matrix().cols(); }
|
||||
|
||||
/** \returns the tolerance threshold used by the stopping criteria.
|
||||
* \sa setTolerance()
|
||||
|
||||
Reference in New Issue
Block a user