mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
8 lines
198 B
Plaintext
8 lines
198 B
Plaintext
import cpp
|
|
|
|
from MemberFunction m, TemplateClass c, string specifiers
|
|
where
|
|
c.getAMember() = m and
|
|
specifiers = concat(string s | s = m.getASpecifier().getName() | s, ", ")
|
|
select m, specifiers
|