We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e2f5ac3 commit 021dd10Copy full SHA for 021dd10
cli/threadexecutor.cpp
@@ -128,8 +128,8 @@ class ThreadData
128
// TODO: call analyseClangTidy()?
129
}
130
for (const auto& suppr : fileChecker.settings().supprs.nomsg.getSuppressions()) {
131
- // need to transfer unusedFunction suppressions because these are handled later on
132
- if (suppr.isInline && suppr.errorId == "unusedFunction") {
+ // need to transfer all inline suppressions because these are used later on
+ if (suppr.isInline) {
133
mSuppressions.addSuppression(suppr); // TODO: check result
134
continue;
135
0 commit comments