Files
codeql/cpp/ql/test/library-tests/ctorinits/dtors.ql
2018-08-02 17:53:23 +01:00

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())