Skip to content

Commit 411bc16

Browse files
committed
Java/C++/C#: Address review comment.
1 parent 9e90206 commit 411bc16

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ class BarrierGuard extends Expr {
345345
/** NOT YET SUPPORTED. Holds if this guard validates `e` upon evaluating to `branch`. */
346346
abstract deprecated predicate checks(Expr e, boolean branch);
347347

348-
/** Gets a node guarded by this. */
348+
/** Gets a node guarded by this guard. */
349349
final Node getAGuardedNode() {
350350
none() // stub
351351
}

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
@@ -181,7 +181,7 @@ class BarrierGuard extends IRGuardCondition {
181181
/** NOT YET SUPPORTED. Holds if this guard validates `e` upon evaluating to `b`. */
182182
abstract deprecated predicate checks(Instruction e, boolean b);
183183

184-
/** Gets a node guarded by this. */
184+
/** Gets a node guarded by this guard. */
185185
final Node getAGuardedNode() {
186186
none() // stub
187187
}

csharp/ql/src/semmle/code/csharp/dataflow/internal/DataFlowPublic.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ class BarrierGuard extends Internal::Guard {
177177
/** NOT YET SUPPORTED. Holds if this guard validates `e` upon evaluating to `v`. */
178178
abstract deprecated predicate checks(Expr e, AbstractValue v);
179179

180-
/** Gets a node guarded by this. */
180+
/** Gets a node guarded by this guard. */
181181
final Node getAGuardedNode() {
182182
none() // stub
183183
}

java/ql/src/semmle/code/java/dataflow/internal/DataFlowUtil.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -431,7 +431,7 @@ class BarrierGuard extends Guard {
431431
/** Holds if this guard validates `e` upon evaluating to `branch`. */
432432
abstract predicate checks(Expr e, boolean branch);
433433

434-
/** Gets a node guarded by this. */
434+
/** Gets a node guarded by this guard. */
435435
final Node getAGuardedNode() {
436436
exists(SsaVariable v, boolean branch, RValue use |
437437
this.checks(v.getAUse(), branch) and

0 commit comments

Comments
 (0)