mirror of
https://github.com/github/codeql.git
synced 2026-03-23 07:56:54 +01:00
11 lines
211 B
Plaintext
11 lines
211 B
Plaintext
/**
|
|
* @name Calls1
|
|
* @kind table
|
|
*/
|
|
import cpp
|
|
|
|
from Function a, string rel, Function b
|
|
where (a.accesses(b) and rel = "accesses") or
|
|
(a.calls(b) and rel = "calls")
|
|
select a.getName(), rel, b.getName()
|