Signals fatal error message to the run context
| 10780 | namespace { |
| 10781 | //! Signals fatal error message to the run context |
| 10782 | void reportFatal( char const * const message ) { |
| 10783 | Catch::getCurrentContext().getResultCapture()->handleFatalErrorCondition( message ); |
| 10784 | } |
| 10785 | |
| 10786 | //! Minimal size Catch2 needs for its own fatal error handling. |
| 10787 | //! Picked anecdotally, so it might not be sufficient on all |
no test coverage detected