diff --git a/cli/threadexecutor.cpp b/cli/threadexecutor.cpp index dd8fd78cf..1f1d80138 100644 --- a/cli/threadexecutor.cpp +++ b/cli/threadexecutor.cpp @@ -369,7 +369,7 @@ void ThreadExecutor::reportInternalChildErr(const std::string &childname, const Severity::error, "Internal error: " + msg, "cppcheckError", - false); + Certainty::normal); if (!mSettings.nomsg.isSuppressed(errmsg.toSuppressionsErrorMessage())) mErrorLogger.reportErr(errmsg); diff --git a/lib/errortypes.h b/lib/errortypes.h index 7887c34c1..1fd16a3a9 100644 --- a/lib/errortypes.h +++ b/lib/errortypes.h @@ -43,7 +43,7 @@ struct InternalError { class CPPCHECKLIB Certainty { public: enum CertaintyLevel { - normal, inconclusive, experimental + normal, inconclusive, safe, experimental }; };