mirror of
https://github.com/github/codeql.git
synced 2025-12-20 18:56:32 +01:00
14 lines
392 B
Plaintext
14 lines
392 B
Plaintext
import cpp
|
|
|
|
from
|
|
Declaration d, string namespaceQualifier, string typeQualifier, string baseName, string globalName
|
|
where
|
|
d.hasQualifiedName(namespaceQualifier, typeQualifier, baseName) and
|
|
(
|
|
d.hasGlobalName(globalName)
|
|
or
|
|
not d.hasGlobalName(_) and
|
|
globalName = "(not global)"
|
|
)
|
|
select d, d.getQualifiedName(), namespaceQualifier, typeQualifier, baseName, globalName
|