Skip to content

Commit 234bc05

Browse files
committed
Fix query formatting (remove parentheses around not's argument).
1 parent 05ae4d9 commit 234bc05

File tree

1 file changed

+1
-1
lines changed
  • cpp/common/src/codingstandards/cpp/rules/deadcode

1 file changed

+1
-1
lines changed

cpp/common/src/codingstandards/cpp/rules/deadcode/DeadCode.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ predicate isDeadStmt(Stmt s) {
5353
va.getTarget() = v and
5454
not isDeadOrUnreachableStmt(va.getEnclosingStmt())
5555
) and
56-
not (countUsesInLocalArraySize(v) > 0)
56+
not countUsesInLocalArraySize(v) > 0
5757
)
5858
)
5959
)

0 commit comments

Comments
 (0)