Skip to content

Commit a7c22db

Browse files
committed
C++: Autoformat.
1 parent de751b0 commit a7c22db

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

cpp/ql/src/semmle/code/cpp/rangeanalysis/SimpleRangeAnalysis.qll

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,12 @@ private class UnsignedBitwiseAndExpr extends BitwiseAndExpr {
129129
getLeftOperand().getValue().toInt() >= 0
130130
) and
131131
(
132-
getRightOperand().getFullyConverted().getType().getUnderlyingType().(IntegralType).isUnsigned() or
132+
getRightOperand()
133+
.getFullyConverted()
134+
.getType()
135+
.getUnderlyingType()
136+
.(IntegralType)
137+
.isUnsigned() or
133138
getRightOperand().getValue().toInt() >= 0
134139
)
135140
}

0 commit comments

Comments
 (0)