Skip to content

Commit

Permalink
Merge pull request #36475 from gartung/gartung-SA-pset-exists-checker-2
Browse files Browse the repository at this point in the history
Static Analyzers: Fix capitalization of category name for ParameterSet::exists check
  • Loading branch information
cmsbuild committed Dec 14, 2021
2 parents 8023f7d + 5ab24ec commit 2438e09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Utilities/StaticAnalyzers/src/PsetExistsFCallChecker.cpp
Expand Up @@ -100,7 +100,7 @@ namespace clangcms {
return;
os << "function " << mname << " is called in function " << pname;
BugType *BT = new BugType(
Checker, "Function edm::ParameterSet::exists() or edm::ParameterSet::existsAs<>() called", "CMS Code Rules");
Checker, "Function edm::ParameterSet::exists() or edm::ParameterSet::existsAs<>() called", "CMS code rules");
std::unique_ptr<BasicBugReport> R = std::make_unique<BasicBugReport>(*BT, os.str(), CELoc);
R->setDeclWithIssue(AC->getDecl());
R->addRange(CE->getExprLoc());
Expand Down

0 comments on commit 2438e09

Please sign in to comment.