| 734 | { |
| 735 | public: |
| 736 | static SAFEINT_NORETURN void SAFEINT_STDCALL SafeIntOnOverflow() SAFEINT_NOTHROW |
| 737 | { |
| 738 | SafeIntExceptionAssert(); |
| 739 | RaiseException( static_cast<DWORD>(EXCEPTION_INT_OVERFLOW), EXCEPTION_NONCONTINUABLE, 0, 0); |
| 740 | } |
| 741 | |
| 742 | static SAFEINT_NORETURN void SAFEINT_STDCALL SafeIntOnDivZero() SAFEINT_NOTHROW |
| 743 | { |
nothing calls this directly
no test coverage detected