diff --git a/lib/templatesimplifier.cpp b/lib/templatesimplifier.cpp index 8ea4b8ccb..57c7265ea 100644 --- a/lib/templatesimplifier.cpp +++ b/lib/templatesimplifier.cpp @@ -3154,7 +3154,7 @@ bool TemplateSimplifier::simplifyTemplateInstantiations( (!typeParametersInDeclaration.empty() && !instantiateMatch(tok2, typeParametersInDeclaration.size(), templateDeclaration.isVariadic(), nullptr))) { if (printDebug && mErrorLogger) { std::list callstack(1, tok2); - mErrorLogger->reportErr(ErrorMessage(callstack, &mTokenList, Severity::debug, "debug", + mErrorLogger->reportErr(ErrorMessage(callstack, &mTokenList, Severity::debug, "templateInstantiation", "Failed to instantiate template \"" + instantiation.name() + "\". The checking continues anyway.", Certainty::normal)); } if (typeForNewName.empty()) @@ -3232,7 +3232,7 @@ bool TemplateSimplifier::simplifyTemplateInstantiations( if (typeForNewName.empty()) { if (printDebug && mErrorLogger) { std::list callstack(1, tok2); - mErrorLogger->reportErr(ErrorMessage(callstack, &mTokenList, Severity::debug, "debug", + mErrorLogger->reportErr(ErrorMessage(callstack, &mTokenList, Severity::debug, "templateInstantiation", "Failed to instantiate template \"" + templateDeclaration.name() + "\". The checking continues anyway.", Certainty::normal)); } return false; diff --git a/tools/donate-cpu-server.py b/tools/donate-cpu-server.py index 2fe1ea318..d525575c7 100755 --- a/tools/donate-cpu-server.py +++ b/tools/donate-cpu-server.py @@ -26,7 +26,7 @@ from urllib.parse import urlparse # Version scheme (MAJOR.MINOR.PATCH) should orientate on "Semantic Versioning" https://semver.org/ # Every change in this script should result in increasing the version number accordingly (exceptions may be cosmetic # changes) -SERVER_VERSION = "1.3.38" +SERVER_VERSION = "1.3.39" OLD_VERSION = '2.10' @@ -102,6 +102,7 @@ def overviewReport() -> str: html += 'simplifyUsingUnmatchedBodyEnd
\n' html += 'simplifyUsing
\n' html += 'valueFlowMaxIterations
\n' + html += 'templateInstantiation
\n' #html += 'autoNoType
\n' #html += 'valueFlowBailout
\n' #html += 'bailoutUninitVar
\n'