enum ErrnoCheckState
Declared at: clang/lib/StaticAnalyzer/Checkers/ErrnoModeling.h:24
Enumerators
Name | Value | Comment |
---|---|---|
Irrelevant | 0 | We do not know anything about 'errno'. |
MustBeChecked | 1 | Value of 'errno' should be checked to find out if a previous function call has failed. |
MustNotBeChecked | 2 | Value of 'errno' is not allowed to be read, it can contain an unspecified value. |