mirror of
https://github.com/github/codeql.git
synced 2026-03-04 22:56:47 +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
|
|
|