We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9cde2bb commit 470321eCopy full SHA for 470321e
cpp/ql/lib/semmle/code/cpp/ir/dataflow/internal/DataFlowUtil.qll
@@ -348,7 +348,7 @@ class Node extends TIRDataFlowNode {
348
* sink(x++);
349
* ```
350
* in the above program, there will not be flow from a node `n` such that
351
- * `n.asDefinition() instanceof IncrementOperation` to the argument of `sink`
+ * `n.asDefinition(_) instanceof IncrementOperation` to the argument of `sink`
352
* since the value passed to `sink` is the value before to the increment.
353
* However, there will be dataflow from a node `n` such that
354
* `n.asExpr() instanceof IncrementOperation` since the result of evaluating
0 commit comments