mirror of
https://github.com/github/codeql.git
synced 2026-03-04 06:36:46 +01:00
8 lines
222 B
Plaintext
8 lines
222 B
Plaintext
import cpp
|
|
|
|
from DeclarationEntry de, Declaration d, string canRoundTrip
|
|
where
|
|
d = de.getDeclaration() and
|
|
if d.getADeclarationEntry() = de then canRoundTrip = "yes" else canRoundTrip = "no"
|
|
select de, d, canRoundTrip
|