Skip to content

Commit b4f6d51

Browse files
committed
C++: Use correct DataFlow import in new TaintTracking.qll
Using the IR version directly gives errors about conflicting imports if both DataFlow and TaintTracking are imported.
1 parent 2203eb6 commit b4f6d51

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cpp/ql/lib/semmle/code/cpp/dataflow/new/TaintTracking.qll

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
* `TaintTracking::localTaintStep` with arguments of type `DataFlow::Node`.
1616
*/
1717

18-
import semmle.code.cpp.ir.dataflow.DataFlow
19-
import semmle.code.cpp.ir.dataflow.DataFlow2
18+
import semmle.code.cpp.dataflow.new.DataFlow
19+
import semmle.code.cpp.dataflow.new.DataFlow2
2020

2121
/**
2222
* Provides classes for performing local (intra-procedural) and

0 commit comments

Comments
 (0)