enum StoreInfo::Kind

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

Enumerators

NameValueComment
Initialization0The value got stored into the region during initialization: int x = 42;
Assignment1The value got stored into the region during assignment: int x; x = 42;
CallArgument2The value got stored into the parameter region as the result of a call.
BlockCapture3The 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.