| 283 | } |
| 284 | |
| 285 | int CppCheckExecutor::check_wrapper(const Settings& settings, Suppressions& supprs) |
| 286 | { |
| 287 | #ifdef USE_WINDOWS_SEH |
| 288 | if (settings.exceptionHandling) { |
| 289 | CALL_WITH_SEH_WRAPPER(check_internal(settings, supprs)); |
| 290 | } |
| 291 | #elif defined(USE_UNIX_SIGNAL_HANDLING) |
| 292 | if (settings.exceptionHandling) |
| 293 | register_signal_handler(settings.exceptionOutput); |
| 294 | #endif |
| 295 | return check_internal(settings, supprs); |
| 296 | } |
| 297 | |
| 298 | /** |
| 299 | * Get list of unmatchedSuppression errors |
nothing calls this directly
no test coverage detected