enum class TrackingKind

Description

Specifies the type of tracking for an expression.

Declared at: clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporterVisitors.h:95

Enumerators

NameValueComment
Thorough0Default tracking kind -- specifies that as much information should be gathered about the tracked expression value as possible.
Condition1Specifies that a more moderate tracking should be used for the expression value. This will essentially make sure that functions relevant to it aren't pruned, but otherwise relies on the user reading the code or following the arrows.