mirror of
https://github.com/github/codeql.git
synced 2026-01-28 05:42:58 +01:00
9 lines
165 B
Plaintext
9 lines
165 B
Plaintext
import cpp
|
|
|
|
from Comment c, string s
|
|
where if exists(c.getCommentedElement())
|
|
then s = c.getCommentedElement().toString()
|
|
else s = "<none>"
|
|
select c, s
|
|
|