mirror of
https://github.com/github/codeql.git
synced 2026-04-28 10:15:14 +02:00
8 lines
171 B
Plaintext
8 lines
171 B
Plaintext
import cpp
|
|
|
|
from ConstructorFieldInit cfi, Expr e, string clazz
|
|
where e = cfi.getExpr()
|
|
and clazz = e.getAQlClass()
|
|
and clazz.matches("%Literal")
|
|
select cfi, e, clazz
|