enum AnyCall::Kind
Declared at: clang/include/clang/Analysis/AnyCall.h:27
Enumerators
Name | Value | Comment |
---|---|---|
Function | 0 | A function, function pointer, or a C++ method call |
ObjCMethod | 1 | A call to an Objective-C method |
Block | 2 | A call to an Objective-C block |
Destructor | 3 | An implicit C++ destructor call (called implicitly or by operator 'delete') |
Constructor | 4 | An implicit or explicit C++ constructor call |
InheritedConstructor | 5 | A C++ inherited constructor produced by a "using T::T" directive |
Allocator | 6 | A C++ allocation function call (operator `new`), via C++ new-expression |
Deallocator | 7 | A C++ deallocation function call (operator `delete`), via C++ delete-expression |