File tree Expand file tree Collapse file tree 2 files changed +27
-0
lines changed
cpp/ql/lib/semmle/code/cpp/dataflow Expand file tree Collapse file tree 2 files changed +27
-0
lines changed Original file line number Diff line number Diff line change 18
18
*/
19
19
20
20
import cpp
21
+
22
+ /**
23
+ * DEPRECATED: Use `semmle.code.cpp.dataflow.new.DataFlow` instead.
24
+ *
25
+ * Provides classes for performing local (intra-procedural) and
26
+ * global (inter-procedural) data flow analyses.
27
+ */
28
+ deprecated module DataFlow {
29
+ private import semmle.code.cpp.dataflow.internal.DataFlowImplSpecific
30
+ private import codeql.dataflow.DataFlow
31
+ import DataFlowMake< Location , CppOldDataFlow >
32
+ import Public
33
+ }
Original file line number Diff line number Diff line change 16
16
*/
17
17
18
18
import semmle.code.cpp.dataflow.DataFlow
19
+
20
+ /**
21
+ * DEPRECATED: Use `semmle.code.cpp.dataflow.new.TaintTracking` instead.
22
+ *
23
+ * Provides classes for performing local (intra-procedural) and
24
+ * global (inter-procedural) taint-tracking analyses.
25
+ */
26
+ deprecated module TaintTracking {
27
+ import semmle.code.cpp.dataflow.internal.TaintTrackingUtil
28
+ private import semmle.code.cpp.dataflow.internal.DataFlowImplSpecific
29
+ private import semmle.code.cpp.dataflow.internal.TaintTrackingImplSpecific
30
+ private import codeql.dataflow.TaintTracking
31
+ import TaintFlowMake< Location , CppOldDataFlow , CppOldTaintTracking >
32
+ }
You can’t perform that action at this time.
0 commit comments