enum PragmaIntroducerKind
Description
Describes how the pragma was introduced, e.g., with # pragma, _Pragma, or __pragma.
Declared at: clang/include/clang/Lex/Pragma.h:32
Enumerators
Name | Value | Comment |
---|---|---|
PIK_HashPragma | 0 | The pragma was introduced via # pragma. |
PIK__Pragma | 1 | The pragma was introduced via the C99 _Pragma(string-literal). |
PIK___pragma | 2 | The pragma was introduced via the Microsoft __pragma(token-string). |