mirror of
https://github.com/github/codeql.git
synced 2025-12-19 02:13:17 +01:00
11 lines
231 B
Plaintext
11 lines
231 B
Plaintext
import cpp
|
|
|
|
class EmptyBlock extends Block {
|
|
EmptyBlock() { this.isEmpty() }
|
|
}
|
|
|
|
from IfStmt ifstmt
|
|
where
|
|
ifstmt.getThen() instanceof EmptyBlock and
|
|
not exists(ifstmt.getElse())
|
|
select ifstmt, "This if-statement is redundant." |