From: Anders Carlsson Date: Sun, 21 Dec 2008 00:16:32 +0000 (+0000) Subject: Did not mean to commit this. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=97e0179f1ae545e07d9f5e7c1d2ef5c5bab06676;p=clang Did not mean to commit this. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@61296 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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(TT->getDecl()); } + //===----------------------------------------------------------------------===// // Type Printing //===----------------------------------------------------------------------===//