mirror of
https://github.com/github/codeql.git
synced 2026-03-27 01:38:22 +01: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
|