enum UninitUse::Kind

Description

The kind of uninitialized use.

Declared at: clang/include/clang/Analysis/Analyses/UninitializedValues.h:69

Enumerators

NameValueComment
Maybe0The use might be uninitialized.
Sometimes1The use is uninitialized whenever a certain branch is taken.
AfterDecl2The use is uninitialized the first time it is reached after we reach the variable's declaration.
AfterCall3The use is uninitialized the first time it is reached after the function is called.
Always4The use is always uninitialized.