Skip to content

Commit 07ab119

Browse files
committed
C++: Add explicit qualifiers.
1 parent d2964a7 commit 07ab119

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

cpp/ql/lib/semmle/code/cpp/ir/implementation/raw/internal/TranslatedStmt.qll

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -314,17 +314,17 @@ class TranslatedTryStmt extends TranslatedStmt {
314314
// All non-finally children go to the successor of the `try` if
315315
// there is no finally block, but if there is a finally block
316316
// then we go to that one.
317-
child = [getBody(), getHandler(_)] and
317+
child = [this.getBody(), this.getHandler(_)] and
318318
(
319319
not exists(this.getFinally()) and
320-
result = getParent().getChildSuccessor(this)
320+
result = this.getParent().getChildSuccessor(this)
321321
or
322322
result = this.getFinally().getFirstInstruction()
323323
)
324324
or
325325
// And after the finally block we go to the successor of the `try`.
326326
child = this.getFinally() and
327-
result = getParent().getChildSuccessor(this)
327+
result = this.getParent().getChildSuccessor(this)
328328
}
329329

330330
final Instruction getNextHandler(TranslatedHandler handler) {

0 commit comments

Comments
 (0)