diff options
Diffstat (limited to 'include/clang/Frontend/PCHBitCodes.h')
-rw-r--r-- | include/clang/Frontend/PCHBitCodes.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/clang/Frontend/PCHBitCodes.h b/include/clang/Frontend/PCHBitCodes.h index fe3d8ed86c..14c59712ec 100644 --- a/include/clang/Frontend/PCHBitCodes.h +++ b/include/clang/Frontend/PCHBitCodes.h @@ -316,8 +316,12 @@ namespace clang { DECL_TYPEDEF, /// \brief An EnumDecl record. DECL_ENUM, + /// \brief A RecordDecl record. + DECL_RECORD, /// \brief An EnumConstantDecl record. DECL_ENUM_CONSTANT, + /// \brief A FieldDecl record. + DECL_FIELD, /// \brief A VarDecl record. DECL_VAR, /// \brief A record that stores the set of declarations that are |