enum class ObjKind
Description
Determines the object kind of a tracked object.
Declared at: clang/include/clang/Analysis/RetainSummaryManager.h:35
Enumerators
Name | Value | Comment |
---|---|---|
CF | 0 | Indicates that the tracked object is a CF object. |
ObjC | 1 | Indicates that the tracked object is an Objective-C object. |
AnyObj | 2 | Indicates that the tracked object could be a CF or Objective-C object. |
Generalized | 3 | Indicates that the tracked object is a generalized object. |
OS | 4 | Indicates that the tracking object is a descendant of a referenced-counted OSObject, used in the Darwin kernel. |