mirror of
https://github.com/github/codeql.git
synced 2026-01-07 11:40:27 +01:00
6 lines
212 B
Plaintext
6 lines
212 B
Plaintext
import cpp
|
|
|
|
from FunctionDeclarationEntry fde, string imp
|
|
where if fde.isImplicit() then imp = "isImplicit" else imp = ""
|
|
select fde, imp, count(fde.getASpecifier()), concat(fde.getASpecifier().toString(), ", ")
|