enum Sema::IfExistsResult
Description
Describes the result of an "if-exists" condition check.
Declared at: clang/include/clang/Sema/Sema.h:5858
Enumerators
Name | Value | Comment |
---|---|---|
IER_Exists | 0 | The symbol exists. |
IER_DoesNotExist | 1 | The symbol does not exist. |
IER_Dependent | 2 | The name is a dependent name, so the results will differ from one instantiation to the next. |
IER_Error | 3 | An error occurred. |