diff options
author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2010-06-25 16:24:58 +0000 |
---|---|---|
committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2010-06-25 16:24:58 +0000 |
commit | 3acad62a239448bef0f5848b2a0d5f7dfefd3d14 (patch) | |
tree | 77c57ee55018deb8d3e02b0272263a07b649c49a /include/clang/Frontend/PCHBitCodes.h | |
parent | a56b049b009725efdf5b540128c90ec21e3eb9c1 (diff) |
Support DependentTemplateSpecializationType and ElaboratedType for PCH.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@106858 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Frontend/PCHBitCodes.h')
-rw-r--r-- | include/clang/Frontend/PCHBitCodes.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/clang/Frontend/PCHBitCodes.h b/include/clang/Frontend/PCHBitCodes.h index fb7da7713d..0abe657475 100644 --- a/include/clang/Frontend/PCHBitCodes.h +++ b/include/clang/Frontend/PCHBitCodes.h @@ -422,8 +422,10 @@ namespace clang { TYPE_TEMPLATE_TYPE_PARM = 29, /// \brief An TemplateSpecializationType record. TYPE_TEMPLATE_SPECIALIZATION = 30, - /// \brief An DependentNameType record. - TYPE_DEPENDENT_NAME = 31 + /// \brief A DependentNameType record. + TYPE_DEPENDENT_NAME = 31, + /// \brief A DependentTemplateSpecializationType record. + TYPE_DEPENDENT_TEMPLATE_SPECIALIZATION = 32 }; /// \brief The type IDs for special types constructed by semantic |