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

NameValueComment
PIK_HashPragma0The pragma was introduced via # pragma.
PIK__Pragma1The pragma was introduced via the C99 _Pragma(string-literal).
PIK___pragma2The pragma was introduced via the Microsoft __pragma(token-string).