aboutsummaryrefslogtreecommitdiff
path: root/include/clang/Frontend/PCHBitCodes.h
diff options
context:
space:
mode:
authorArgyrios Kyrtzidis <akyrtzi@gmail.com>2010-07-22 17:28:27 +0000
committerArgyrios Kyrtzidis <akyrtzi@gmail.com>2010-07-22 17:28:27 +0000
commit5f3dbf5bbc5cb6e3d9273e5b6e82baa14cbd999c (patch)
tree043b75c9dc965b09e4a11045d74fa5541cd47bb2 /include/clang/Frontend/PCHBitCodes.h
parent0d396896998685809bda7444d772bbeb5bbe9b46 (diff)
Serialization is implemented, fix comments.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@109124 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Frontend/PCHBitCodes.h')
-rw-r--r--include/clang/Frontend/PCHBitCodes.h12
1 files changed, 10 insertions, 2 deletions
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
};