mirror of
https://github.com/github/codeql.git
synced 2026-03-27 09:48:16 +01:00
8 lines
205 B
Plaintext
8 lines
205 B
Plaintext
import cpp
|
|
|
|
from Destructor d, int i, Expr e, string what
|
|
where e = d.getDestruction(i)
|
|
and what = e.getAQlClass()
|
|
and what.matches("Destructor%Destruction")
|
|
select d, i, what, e, count(e.getAChild())
|