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

9 lines
200 B
Plaintext

import cpp
from Element e
where not e.getLocation() instanceof UnknownLocation
and not e instanceof Folder
select e,
any(boolean b | if e.isInMacroExpansion() then b = true else b = false)