mirror of
https://github.com/github/codeql.git
synced 2026-01-29 06:12:58 +01:00
10 lines
205 B
Plaintext
10 lines
205 B
Plaintext
/**
|
|
* @name MemberVariable
|
|
* @kind table
|
|
*/
|
|
import cpp
|
|
|
|
from MemberVariable m, string static
|
|
where if m.isStatic() then static = "static" else static = ""
|
|
select m, static, m.getASpecifier().toString()
|