diff options
author | John McCall <rjmccall@apple.com> | 2009-10-16 00:14:28 +0000 |
---|---|---|
committer | John McCall <rjmccall@apple.com> | 2009-10-16 00:14:28 +0000 |
commit | 46a617a792bfab0d9b1e057371ea3b9540802226 (patch) | |
tree | 3868fd2967ab3caab3ffc06146508e07f1c2aca8 /include/clang/Frontend/PCHBitCodes.h | |
parent | 47dcd06e113c5a3b6621166acdb163734a1cfa33 (diff) |
Remove the ConstantArrayType subtypes. This information is preserved in the
TypeLoc records for declarations; it should not be necessary to represent it
directly in the type system.
Please complain if you were using these classes and feel you can't replicate
previous functionality using the TypeLoc API.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@84222 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, 1 insertions, 5 deletions
diff --git a/include/clang/Frontend/PCHBitCodes.h b/include/clang/Frontend/PCHBitCodes.h index 716780e68a..6b3f20bdb8 100644 --- a/include/clang/Frontend/PCHBitCodes.h +++ b/include/clang/Frontend/PCHBitCodes.h @@ -406,12 +406,8 @@ namespace clang { TYPE_OBJC_PROTOCOL_LIST = 23, /// \brief a DecltypeType record. TYPE_DECLTYPE = 24, - /// \brief A ConstantArrayWithExprType record. - TYPE_CONSTANT_ARRAY_WITH_EXPR = 25, - /// \brief A ConstantArrayWithoutExprType record. - TYPE_CONSTANT_ARRAY_WITHOUT_EXPR = 26, /// \brief An ElaboratedType record. - TYPE_ELABORATED = 27 + TYPE_ELABORATED = 25 }; /// \brief The type IDs for special types constructed by semantic |