Skip to content

Commit cfb9277

Browse files
committed
C++: use explicit this
1 parent 87af5b7 commit cfb9277

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cpp/ql/lib/experimental/semmle/code/cpp/ir/dataflow/internal/DataFlowUtil.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ class Node extends TIRDataFlowNode {
229229
Expr asIndirectArgument() { result = this.asIndirectArgument(_) }
230230

231231
/** Gets the positional parameter corresponding to this node, if any. */
232-
Parameter asParameter() { result = asParameter(0) }
232+
Parameter asParameter() { result = this.asParameter(0) }
233233

234234
/**
235235
* Gets the uninitialized local variable corresponding to this node, if

0 commit comments

Comments
 (0)