enum Parser::IfExistsBehavior
Description
Describes the behavior that should be taken for an __if_exists block.
Declared at: clang/include/clang/Parse/Parser.h:2118
Enumerators
Name | Value | Comment |
---|---|---|
IEB_Parse | 0 | Parse the block; this code is always used. |
IEB_Skip | 1 | Skip the block entirely; this code is never used. |
IEB_Dependent | 2 | Parse the block as a dependent block, which may be used in some template instantiations but not others. |