diff options
author | Anders Carlsson <andersca@mac.com> | 2008-12-21 00:16:32 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2008-12-21 00:16:32 +0000 |
commit | 97e0179f1ae545e07d9f5e7c1d2ef5c5bab06676 (patch) | |
tree | 3c0f1a89ee5330254a0d977e4c188a40767a5eab | |
parent | 8b33c087fc6d97064b6620c96c732ebc5c003fb2 (diff) |
Did not mean to commit this.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@61296 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/AST/Type.h | 4 | ||||
-rw-r--r-- | lib/AST/Type.cpp | 1 |
2 files changed, 1 insertions, 4 deletions
diff --git a/include/clang/AST/Type.h b/include/clang/AST/Type.h index 93d31c7e7d..ffcc9f6457 100644 --- a/include/clang/AST/Type.h +++ b/include/clang/AST/Type.h @@ -826,10 +826,6 @@ public: assert (0 && "Cannnot unique VariableArrayTypes."); } - /// Returns the innermost element type of a VAT - for example - /// will return "int" for int[n][m]. - QualType getBaseType() const; - protected: virtual void EmitImpl(llvm::Serializer& S) const; static Type* CreateImpl(ASTContext& Context,llvm::Deserializer& D); diff --git a/lib/AST/Type.cpp b/lib/AST/Type.cpp index b9d97ced13..5909c976aa 100644 --- a/lib/AST/Type.cpp +++ b/lib/AST/Type.cpp @@ -803,6 +803,7 @@ bool EnumType::classof(const TagType *TT) { return isa<EnumDecl>(TT->getDecl()); } + //===----------------------------------------------------------------------===// // Type Printing //===----------------------------------------------------------------------===// |