Skip to content

Commit aa500df

Browse files
committed
DataFlow: Remove uneeded annotation
These become overlay[local] instead. This means that if dataflownode is global, they are still global.
1 parent 3801b88 commit aa500df

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

shared/dataflow/codeql/dataflow/internal/DataFlowImpl.qll

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3386,7 +3386,6 @@ module MakeImpl<LocationSig Location, InputSig<Location> Lang> {
33863386
)
33873387
}
33883388

3389-
overlay[local]
33903389
private predicate flowLocal(Node source, Node sink) =
33913390
forceLocal(flowIncremental/2)(source, sink)
33923391

@@ -3408,7 +3407,6 @@ module MakeImpl<LocationSig Location, InputSig<Location> Lang> {
34083407
exists(PathNode n | n.isSink() and n.getNode() = sink)
34093408
}
34103409

3411-
overlay[local]
34123410
private predicate flowToLocal(Node sink) = forceLocal(flowToIncremental/1)(sink)
34133411

34143412
/**
@@ -3434,7 +3432,6 @@ module MakeImpl<LocationSig Location, InputSig<Location> Lang> {
34343432
exists(PathNode n | n.isSource() and n.getNode() = source)
34353433
}
34363434

3437-
overlay[local]
34383435
private predicate flowFromLocal(Node source) = forceLocal(flowFromIncremental/1)(source)
34393436

34403437
/**

0 commit comments

Comments
 (0)