Skip to content

Commit c388bae

Browse files
committed
Declarations3: fix format Identifiers lib
1 parent 70c6b4e commit c388bae

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

c/common/src/codingstandards/c/Identifiers.qll

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ import cpp
22

33
//Identifiers that are candidates for checking uniqueness
44
class InterestingIdentifiers extends Declaration {
5-
InterestingIdentifiers() {
6-
not this.isFromTemplateInstantiation(_) and
7-
not this.isFromUninstantiatedTemplate(_) and
8-
not this instanceof TemplateParameter and
9-
not this.hasDeclaringType() and
10-
not this instanceof Operator and
11-
not this.hasName("main") and
12-
exists(this.getADeclarationLocation())
13-
}
14-
}
5+
InterestingIdentifiers() {
6+
not this.isFromTemplateInstantiation(_) and
7+
not this.isFromUninstantiatedTemplate(_) and
8+
not this instanceof TemplateParameter and
9+
not this.hasDeclaringType() and
10+
not this instanceof Operator and
11+
not this.hasName("main") and
12+
exists(this.getADeclarationLocation())
13+
}
14+
}

0 commit comments

Comments
 (0)