mirror of
https://github.com/github/codeql.git
synced 2025-12-21 03:06:31 +01:00
23 lines
757 B
Plaintext
23 lines
757 B
Plaintext
/**
|
|
* Provides a `DataFlow4` module, which is a copy of the `DataFlow` module. Use
|
|
* this class when data-flow configurations must depend on each other. Two
|
|
* classes extending `DataFlow::Configuration` should never depend on each
|
|
* other, but one of them should instead depend on a
|
|
* `DataFlow2::Configuration`, a `DataFlow3::Configuration`, or a
|
|
* `DataFlow4::Configuration`.
|
|
*
|
|
* See `semmle.code.cpp.dataflow.DataFlow` for the full documentation.
|
|
*/
|
|
|
|
import cpp
|
|
|
|
/**
|
|
* DEPRECATED: Use `semmle.code.cpp.dataflow.new.DataFlow4` instead.
|
|
*
|
|
* Provides classes for performing local (intra-procedural) and
|
|
* global (inter-procedural) data flow analyses.
|
|
*/
|
|
deprecated module DataFlow4 {
|
|
import semmle.code.cpp.dataflow.internal.DataFlowImpl4
|
|
}
|