Skip to content

Commit 7cc83da

Browse files
committed
C++: Remove @stmt_while from the TConditionalStmt union type.
1 parent 567984a commit 7cc83da

File tree

1 file changed

+1
-1
lines changed
  • cpp/ql/src/semmle/code/cpp/stmts

1 file changed

+1
-1
lines changed

cpp/ql/src/semmle/code/cpp/stmts/Stmt.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ class ControlStructure extends Stmt, TControlStructure {
200200
Declaration getADeclaration() { none() }
201201
}
202202

203-
private class TConditionalStmt = @stmt_if or @stmt_constexpr_if or @stmt_while or @stmt_switch;
203+
private class TConditionalStmt = @stmt_if or @stmt_constexpr_if or @stmt_switch;
204204

205205
/**
206206
* A C/C++ conditional statement, that is, either an 'if' statement or a

0 commit comments

Comments
 (0)