aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/clang/AST/Type.h4
-rw-r--r--lib/AST/Type.cpp1
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
//===----------------------------------------------------------------------===//