diff options
author | Sebastian Redl <sebastian.redl@getdesigned.at> | 2010-08-24 22:50:19 +0000 |
---|---|---|
committer | Sebastian Redl <sebastian.redl@getdesigned.at> | 2010-08-24 22:50:19 +0000 |
commit | 6e50e00c2fe6a04b2c35592588a4b10a2c269416 (patch) | |
tree | 5f437abfb285eb17922178bdba4b5a351dae6bbe /include/clang/Serialization/ASTBitCodes.h | |
parent | ecbd4a84b9a1c47f913e8d5f67f65455a091bbbd (diff) |
AST reader support for having specializations of templates from earlier in the chain.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@111985 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Serialization/ASTBitCodes.h')
-rw-r--r-- | include/clang/Serialization/ASTBitCodes.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/clang/Serialization/ASTBitCodes.h b/include/clang/Serialization/ASTBitCodes.h index 3341679965..d879fdf402 100644 --- a/include/clang/Serialization/ASTBitCodes.h +++ b/include/clang/Serialization/ASTBitCodes.h @@ -316,7 +316,11 @@ namespace clang { /// \brief Record code for an update to a decl context's lookup table. /// /// In practice, this should only be used for the TU and namespaces. - UPDATE_VISIBLE = 34 + UPDATE_VISIBLE = 34, + + /// \brief Record code for template specializations introduced after + /// serializations of the original template decl. + ADDITIONAL_TEMPLATE_SPECIALIZATIONS = 35 }; /// \brief Record types used within a source manager block. |