mirror of
https://github.com/github/codeql.git
synced 2026-03-06 07:36:47 +01:00
8 lines
216 B
Plaintext
8 lines
216 B
Plaintext
import cpp
|
|
|
|
from LambdaCapture lc, string mode, int index
|
|
where
|
|
exists(LambdaExpression le | le.getCapture(index) = lc) and
|
|
if lc.isImplicit() then mode = "implicit" else mode = "explicit"
|
|
select lc, mode, index
|