Files
codeql/cpp/ql/examples/snippets/emptythen.ql
2020-09-08 08:40:20 +02:00

18 lines
351 B
Plaintext

/**
* @id cpp/examples/emptythen
* @name If statements with empty then branch
* @description Finds `if` statements where the `then` branch is
* an empty block statement
* @tags if
* then
* empty
* conditional
* branch
*/
import cpp
from IfStmt i
where i.getThen().(BlockStmt).getNumStmt() = 0
select i