Skip to content

Commit 7359e32

Browse files
author
Dave Bartolomeo
committed
Fix reference to deprecated predicate
1 parent 62553ab commit 7359e32

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ private string getBoundString(SemBound b, int delta) {
3737
b instanceof SemZeroBound and result = delta.toString()
3838
or
3939
result =
40-
strictconcat(b.(SemSsaBound).getAVariable().(IR::Instruction).getAST().toString(), ":") +
40+
strictconcat(b.(SemSsaBound).getAVariable().(IR::Instruction).getAst().toString(), ":") +
4141
getOffsetString(delta)
4242
}
4343

0 commit comments

Comments
 (0)