Files
codeql/cpp/ql/examples/emptyblock.ql
2019-07-26 17:47:11 +02:00

14 lines
190 B
Plaintext

/**
* @name Empty blocks
* @description Finds empty block statements
* @tags empty
* block
* statement
*/
import cpp
from Block blk
where blk.getNumStmt() = 0
select blk