mirror of
https://github.com/github/codeql.git
synced 2026-03-28 02:08:17 +01:00
7 lines
216 B
Plaintext
7 lines
216 B
Plaintext
import cpp
|
|
|
|
from Class t, string struct, string union
|
|
where if t instanceof Struct then struct = "struct" else struct = ""
|
|
and if t instanceof Union then union = "union" else union = ""
|
|
select t, struct, union
|