]> granicus.if.org Git - clang/commitdiff
Revert r174043 and tweak the comment wording so I'm (hopefully) not confused by it...
authorRichard Smith <richard-llvm@metafoo.co.uk>
Thu, 31 Jan 2013 11:30:17 +0000 (11:30 +0000)
committerRichard Smith <richard-llvm@metafoo.co.uk>
Thu, 31 Jan 2013 11:30:17 +0000 (11:30 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@174053 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/AST/Type.h

index 188dfdcce5fea47685ec759f15a852e165581651..1469746d433ec700ec74208b369dd266bfb9cb1a 100644 (file)
@@ -783,6 +783,10 @@ public:
   ///
   /// Executing \c getUnqualifiedType() on the type \c DifferenceType will
   /// desugar until we hit the type \c Integer, which has no qualifiers on it.
+  ///
+  /// The resulting type might still be qualified if it's sugar for an array
+  /// type.  To strip qualifiers even from within a sugared array type, use
+  /// ASTContext::getUnqualifiedArrayType.
   inline QualType getUnqualifiedType() const;
 
   /// getSplitUnqualifiedType - Retrieve the unqualified variant of the
@@ -790,6 +794,10 @@ public:
   ///
   /// Like getUnqualifiedType(), but also returns the set of
   /// qualifiers that were built up.
+  ///
+  /// The resulting type might still be qualified if it's sugar for an array
+  /// type.  To strip qualifiers even from within a sugared array type, use
+  /// ASTContext::getUnqualifiedArrayType.
   inline SplitQualType getSplitUnqualifiedType() const;
 
   /// \brief Determine whether this type is more qualified than the other