We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4adaa5 commit 58f134fCopy full SHA for 58f134f
cpp/autosar/src/rules/A15-4-4/MissingNoExcept.ql
@@ -32,6 +32,6 @@ where
32
not f.isCompilerGenerated() and
33
// The function is defined in this database
34
f.hasDefinition() and
35
- // This function is not an overriden call operator of lambda expression
+ // This function is not an overriden call operator of a lambda expression
36
not exists(LambdaExpression lambda | lambda.getLambdaFunction() = f)
37
select f, "Function " + f.getName() + " could be declared noexcept(true)."
0 commit comments