From c69a5be0cce4a5b443d22c88eac307105cfebe19 Mon Sep 17 00:00:00 2001 From: Dmitri Gribenko Date: Tue, 12 Jun 2012 01:21:44 +0000 Subject: [PATCH] =?UTF-8?q?Correct=20comment.=20=20The=20return=20type=20w?= =?UTF-8?q?as=20changed=20to=20const=20Type*=20in=20r123814.=20=20Patch=20?= =?UTF-8?q?by=20David=20R=C3=B6thlisberger.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit llvm-svn: 158347 --- clang/include/clang/AST/Type.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/clang/include/clang/AST/Type.h b/clang/include/clang/AST/Type.h index 12fc7409cb20..23308d0873e3 100644 --- a/clang/include/clang/AST/Type.h +++ b/clang/include/clang/AST/Type.h @@ -522,8 +522,6 @@ public: void setLocalFastQualifiers(unsigned Quals) { Value.setInt(Quals); } /// Retrieves a pointer to the underlying (unqualified) type. - /// This should really return a const Type, but it's not worth - /// changing all the users right now. /// /// This function requires that the type not be NULL. If the type might be /// NULL, use the (slightly less efficient) \c getTypePtrOrNull().