Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit aaebe36

Browse files
committed
C++: Fix copy-paste error in convertedExprNode
1 parent 469bdae commit aaebe36

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cpp/ql/src/semmle/code/cpp/ir/dataflow/internal/DataFlowUtil.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ ExprNode exprNode(Expr e) { result.getExpr() = e }
297297
* Gets the `Node` corresponding to `e`, if any. Here, `e` may be a
298298
* `Conversion`.
299299
*/
300-
ExprNode convertedExprNode(Expr e) { result.getExpr() = e }
300+
ExprNode convertedExprNode(Expr e) { result.getConvertedExpr() = e }
301301

302302
/**
303303
* Gets the `Node` corresponding to the value of `p` at function entry.

0 commit comments

Comments
 (0)