mirror of
https://github.com/github/codeql.git
synced 2026-04-26 09:15:12 +02:00
14 lines
219 B
Plaintext
14 lines
219 B
Plaintext
import cpp
|
|
import semmle.code.cpp.pointsto.PointsTo
|
|
|
|
class MyPointsTo extends PointsToExpr
|
|
{
|
|
override predicate interesting() {
|
|
any()
|
|
}
|
|
}
|
|
|
|
from MyPointsTo new, Element loc
|
|
where new.pointsTo() = loc
|
|
select new, loc
|