mirror of
https://github.com/github/codeql.git
synced 2026-04-30 11:15:13 +02:00
9 lines
200 B
Plaintext
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)
|
|
|