mirror of
https://github.com/github/codeql.git
synced 2026-03-27 01:38:22 +01:00
9 lines
173 B
Plaintext
9 lines
173 B
Plaintext
import cpp
|
|
|
|
from Class c, string arg
|
|
where if exists(c.getATemplateArgument())
|
|
then arg = c.getATemplateArgument().toString()
|
|
else arg = "<none>"
|
|
select c, arg
|
|
|