diff options
author | Dmitri Gribenko <gribozavr@gmail.com> | 2012-06-12 01:21:44 +0000 |
---|---|---|
committer | Dmitri Gribenko <gribozavr@gmail.com> | 2012-06-12 01:21:44 +0000 |
commit | c7d2e339f9a71a40db7b199082b42fe91e6fa2cb (patch) | |
tree | 098f166bff32e9424b6fce1b73b1ff8ba444034f | |
parent | ceeb53af1f0f651de124d8e5a1b13b184a480afc (diff) |
Correct comment. The return type was changed to const Type* in r123814. Patch by David Röthlisberger.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@158347 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/AST/Type.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/clang/AST/Type.h b/include/clang/AST/Type.h index 12fc7409cb..23308d0873 100644 --- a/include/clang/AST/Type.h +++ b/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(). |