This commit is contained in:
Родитель
041150a580
Коммит
61d4ba3639
|
@ -0,0 +1,2 @@
|
|||
- `A7-1-7` - `IdentifierDeclarationAndInitializationNotOnSeparateLines.ql`
|
||||
- Fixes #629. Adds brackets, excluding expressions statements in macros.
|
|
@ -19,7 +19,7 @@ import codingstandards.cpp.autosar
|
|||
class UniqueLineStmt extends Locatable {
|
||||
UniqueLineStmt() {
|
||||
not isAffectedByMacro() and
|
||||
exists(Declaration d |
|
||||
(exists(Declaration d |
|
||||
this = d.getADeclarationEntry() and
|
||||
not d instanceof Parameter and
|
||||
not d instanceof TemplateParameter and
|
||||
|
@ -38,7 +38,7 @@ class UniqueLineStmt extends Locatable {
|
|||
or
|
||||
this instanceof ExprStmt and
|
||||
not exists(ForStmt f | f.getInitialization().getAChild*() = this) and
|
||||
not exists(LambdaExpression l | l.getLambdaFunction().getBlock().getAChild*() = this)
|
||||
not exists(LambdaExpression l | l.getLambdaFunction().getBlock().getAChild*() = this))
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -152,4 +152,14 @@ void example_function() { f1(); } // COMPLIANT
|
|||
|
||||
// clang-format off
|
||||
typedef struct x { int y; } z; //COMPLIANT - for struct typedef and struct var //NON_COMPLIANT - for struct all on one line
|
||||
// clang-format on
|
||||
// clang-format on
|
||||
|
||||
#define foo(x, y) \
|
||||
x++; \
|
||||
y++;
|
||||
|
||||
void test_foo() {
|
||||
int a = 1;
|
||||
int b = 1;
|
||||
foo(a, b); // COMPLIANT
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче