Files
codeql/docs/language/ql-training/query-examples/cpp/empty-if-cpp-class.ql
2019-09-05 08:40:36 +01:00

11 lines
165 B
Plaintext

import cpp
class EmptyBlock extends Block {
EmptyBlock() {
this.isEmpty()
}
}
from IfStmt ifStmt
where ifstmt.getThen() instanceof EmptyBlock
select ifstmt