enum StoreInfo::Kind
Declared at: clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporterVisitors.h:121
Enumerators
Name | Value | Comment |
---|---|---|
Initialization | 0 | The value got stored into the region during initialization: int x = 42; |
Assignment | 1 | The value got stored into the region during assignment: int x; x = 42; |
CallArgument | 2 | The value got stored into the parameter region as the result of a call. |
BlockCapture | 3 | The value got stored into the region as block capture. Block data is modeled as a separate region, thus whenever the analyzer sees a captured variable, its value is copied into a special block region. |