Raise exception flags. This raises the specified floating point exceptions and also invokes any additional automatic exception handling as configured with the [HALF_ERRHANDLIG_...](\ref HALF_ERRHANDLING_ERRNO) preprocessor symbols. This function works even if [automatic exception flag handling](\ref HALF_ERRHANDLING_FLAGS) is disabled, but in that case manual flag management is the only way to rai
| 4536 | /// \param excepts OR of exceptions to raise |
| 4537 | /// \retval 0 all selected exceptions raised successfully |
| 4538 | inline int feraiseexcept(int excepts) { detail::errflags() |= excepts; detail::raise(excepts); return 0; } |
| 4539 | |
| 4540 | /// Save exception flags. |
| 4541 | /// This function works even if [automatic exception flag handling](\ref HALF_ERRHANDLING_FLAGS) is disabled, |