Skip to content

Commit 549eca1

Browse files
committed
C++: Fix 'implicit use of this'.
1 parent e430594 commit 549eca1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cpp/ql/lib/experimental/semmle/code/cpp/dataflow/ProductFlow.qll

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,15 +54,15 @@ module ProductFlow {
5454
* dataflow graph when the flow state is `state`.
5555
*/
5656
predicate isBarrier1(DataFlow::Node node, DataFlow::FlowState state) {
57-
isBarrier1(node) and state = ""
57+
this.isBarrier1(node) and state = ""
5858
}
5959

6060
/**
6161
* Holds if data flow through `node` is prohibited through the second projection of the product
6262
* dataflow graph when the flow state is `state`.
6363
*/
6464
predicate isBarrier2(DataFlow::Node node, DataFlow::FlowState state) {
65-
isBarrier2(node) and state = ""
65+
this.isBarrier2(node) and state = ""
6666
}
6767

6868
/**

0 commit comments

Comments
 (0)