MCPcopy Create free account
hub / github.com/cppcheck-opensource/cppcheck / check_wrapper

Method check_wrapper

cli/cppcheckexecutor.cpp:285–296  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

283}
284
285int 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

Callers

nothing calls this directly

Calls 1

register_signal_handlerFunction · 0.85

Tested by

no test coverage detected