mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
8 lines
229 B
Plaintext
8 lines
229 B
Plaintext
import cpp
|
|
|
|
from FoldExpr fe, Expr pack, string init
|
|
where
|
|
pack = fe.getPackExpr() and
|
|
if exists(fe.getInitExpr()) then init = fe.getInitExpr().toString() else init = "<no init>"
|
|
select fe, fe.getOperatorString(), pack, init
|