Replace instances of EIGEN_NOEXCEPT macros
This MR replaces some redundant macros with their standard equivalents.
-
EIGEN_NOEXCEPTexpands tonoexcept -
EIGEN_NOEXCEPT_IF(x)expands tonoexcept(x) -
EIGEN_NO_THROWexpands tonoexcept(true), which simplifies tonoexcept -
EIGEN_EXCEPTION_SPEC(x)expands tonoexcept(false), which has no effect so it was removed from theCommaInitializerdestructor
Edited by Tyler Veness