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 93d31c7..ffcc9f6 100644
--- a/include/clang/AST/Type.h
+++ b/include/clang/AST/Type.h
@@ -826,10 +826,6 @@
     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 b9d97ce..5909c97 100644
--- a/lib/AST/Type.cpp
+++ b/lib/AST/Type.cpp
@@ -803,6 +803,7 @@
   return isa<EnumDecl>(TT->getDecl());
 }
 
+
 //===----------------------------------------------------------------------===//
 // Type Printing
 //===----------------------------------------------------------------------===//