mirror of
https://github.com/github/codeql.git
synced 2025-12-20 18:56:32 +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(), ", ")
|