Skip to content

Commit 818bdcf

Browse files
committed
C++: autoformat a test
1 parent 5450681 commit 818bdcf

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

cpp/ql/test/library-tests/ir/range-analysis/RangeAnalysis.ql

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,13 @@ private string getBoundString(SemBound b, int delta) {
3838
b instanceof SemZeroBound and result = delta.toString()
3939
or
4040
result =
41-
strictconcat(b.(SemSsaBound).getAVariable().(SemanticExprConfig::SsaVariable).asInstruction().getAst().toString(), ":") +
42-
getOffsetString(delta)
41+
strictconcat(b.(SemSsaBound)
42+
.getAVariable()
43+
.(SemanticExprConfig::SsaVariable)
44+
.asInstruction()
45+
.getAst()
46+
.toString(), ":"
47+
) + getOffsetString(delta)
4348
}
4449

4550
private string getARangeString(SemExpr e) {

0 commit comments

Comments
 (0)