mirror of
https://github.com/github/codeql.git
synced 2026-03-06 15:49:08 +01:00
9 lines
235 B
Plaintext
9 lines
235 B
Plaintext
import cpp
|
|
|
|
from Variable v, VariableAccess a, int i, string s
|
|
where v = a.getTarget()
|
|
and if exists(v.getATemplateArgument())
|
|
then s = v.getTemplateArgument(i).toString()
|
|
else (s = "<none>" and i = -1)
|
|
select v, a, i, s
|