From: Argyrios Kyrtzidis Date: Thu, 22 Jul 2010 17:28:27 +0000 (+0000) Subject: Serialization is implemented, fix comments. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5f3dbf5bbc5cb6e3d9273e5b6e82baa14cbd999c;p=clang Serialization is implemented, fix comments. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@109124 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/Frontend/PCHBitCodes.h b/include/clang/Frontend/PCHBitCodes.h index eab877aec9..25d3f09127 100644 --- a/include/clang/Frontend/PCHBitCodes.h +++ b/include/clang/Frontend/PCHBitCodes.h @@ -588,17 +588,25 @@ namespace clang { /// \brief An AccessSpecDecl record. DECL_ACCESS_SPEC, - // FIXME: Implement serialization for these decl types. This just - // allocates the order in which + /// \brief A FriendDecl record. DECL_FRIEND, + /// \brief A FriendTemplateDecl record. DECL_FRIEND_TEMPLATE, + /// \brief A ClassTemplateDecl record. DECL_CLASS_TEMPLATE, + /// \brief A ClassTemplateSpecializationDecl record. DECL_CLASS_TEMPLATE_SPECIALIZATION, + /// \brief A ClassTemplatePartialSpecializationDecl record. DECL_CLASS_TEMPLATE_PARTIAL_SPECIALIZATION, + /// \brief A FunctionTemplateDecl record. DECL_FUNCTION_TEMPLATE, + /// \brief A TemplateTypeParmDecl record. DECL_TEMPLATE_TYPE_PARM, + /// \brief A NonTypeTemplateParmDecl record. DECL_NON_TYPE_TEMPLATE_PARM, + /// \brief A TemplateTemplateParmDecl record. DECL_TEMPLATE_TEMPLATE_PARM, + /// \brief A StaticAssertDecl record. DECL_STATIC_ASSERT };