mirror of
https://github.com/github/codeql.git
synced 2026-02-17 07:23:42 +01:00
10 lines
253 B
Plaintext
10 lines
253 B
Plaintext
import cpp
|
|
|
|
from Function f, string d, string c
|
|
where if f instanceof MemberFunction then (
|
|
d = "MemberFunction" and c = ((MemberFunction)f).getDeclaringType().getName()
|
|
) else (
|
|
d = "Function" and c = "<none>"
|
|
)
|
|
select f, d, count(f.getBlock()), c
|