mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
7 lines
211 B
Plaintext
7 lines
211 B
Plaintext
import cpp
|
|
import semmle.code.cpp.headers.PreprocBlock
|
|
|
|
from PreprocessorBlock b, string parent
|
|
where if exists(b.getParent()) then parent = b.getParent().toString() else parent = "(no parent)"
|
|
select parent, b
|