C++: Fix copy-paste error in convertedExprNode

This commit is contained in:
Jonas Jensen
2020-04-02 16:04:14 +02:00
parent 469bdae9b2
commit aaebe3687e

View File

@@ -297,7 +297,7 @@ ExprNode exprNode(Expr e) { result.getExpr() = e }
* Gets the `Node` corresponding to `e`, if any. Here, `e` may be a
* `Conversion`.
*/
ExprNode convertedExprNode(Expr e) { result.getExpr() = e }
ExprNode convertedExprNode(Expr e) { result.getConvertedExpr() = e }
/**
* Gets the `Node` corresponding to the value of `p` at function entry.