mirror of
https://github.com/github/codeql.git
synced 2025-12-19 18:33:16 +01:00
9 lines
224 B
Plaintext
9 lines
224 B
Plaintext
import semmle.code.cpp.commons.Dependency
|
|
|
|
from Element source, Element dest
|
|
where
|
|
dependsOnSimple(source, dest) and
|
|
source.getFile() != dest.getFile() and
|
|
not source.isFromTemplateInstantiation(_)
|
|
select source, dest
|