Skip to content

Commit c7d3c73

Browse files
committed
Fix query formatting issue
In CodeQL CLI 2.15.5 it formats this line together.
1 parent 0d86495 commit c7d3c73

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

c/misra/src/rules/RULE-10-1/OperandsOfAnInappropriateEssentialType.ql

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -178,8 +178,7 @@ predicate isInappropriateEssentialType(
178178
child =
179179
[
180180
operator.(BinaryBitwiseOperation).getAnOperand(),
181-
operator.(AssignBitwiseOperation).getAnOperand(),
182-
operator.(ComplementExpr).getAnOperand()
181+
operator.(AssignBitwiseOperation).getAnOperand(), operator.(ComplementExpr).getAnOperand()
183182
] and
184183
not operator instanceof LShiftExpr and
185184
not operator instanceof RShiftExpr and

0 commit comments

Comments
 (0)