diff options
author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2010-10-28 07:38:42 +0000 |
---|---|---|
committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2010-10-28 07:38:42 +0000 |
commit | bef1a7b9c175d37e4a727e6ce68bd05232fa6970 (patch) | |
tree | b9dcd1ac3c8b68a0a6f9d01e34f3349e8f8b171d /include/clang/Serialization/ASTBitCodes.h | |
parent | 67fa6d5ea630c800c3c96e129129aba93d1487c2 (diff) |
Use the ASTMutationListener to track added template specializations in a chained PCH.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@117533 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Serialization/ASTBitCodes.h')
-rw-r--r-- | include/clang/Serialization/ASTBitCodes.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/include/clang/Serialization/ASTBitCodes.h b/include/clang/Serialization/ASTBitCodes.h index 7370db1fc4..d8e04214b6 100644 --- a/include/clang/Serialization/ASTBitCodes.h +++ b/include/clang/Serialization/ASTBitCodes.h @@ -327,17 +327,13 @@ namespace clang { /// In practice, this should only be used for the TU and namespaces. UPDATE_VISIBLE = 34, - /// \brief Record code for template specializations introduced after - /// serializations of the original template decl. - ADDITIONAL_TEMPLATE_SPECIALIZATIONS = 35, - /// \brief Record for offsets of DECL_UPDATES records for declarations /// that were modified after being deserialized and need updates. - DECL_UPDATE_OFFSETS = 36, + DECL_UPDATE_OFFSETS = 35, /// \brief Record of updates for a declaration that was modified after /// being deserialized. - DECL_UPDATES = 37 + DECL_UPDATES = 36 }; /// \brief Record types used within a source manager block. |