aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/clang/AST/Type.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/include/clang/AST/Type.h b/include/clang/AST/Type.h
index cc6c1fd445..188dfdcce5 100644
--- a/include/clang/AST/Type.h
+++ b/include/clang/AST/Type.h
@@ -783,10 +783,6 @@ 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 an array
- /// type. To strip qualifiers even from within an array type, use
- /// ASTContext::getUnqualifiedArrayType.
inline QualType getUnqualifiedType() const;
/// getSplitUnqualifiedType - Retrieve the unqualified variant of the
@@ -794,10 +790,6 @@ public:
///
/// Like getUnqualifiedType(), but also returns the set of
/// qualifiers that were built up.
- ///
- /// The resulting type might still be qualified if it's an array
- /// type. To strip qualifiers even from within an array type, use
- /// ASTContext::getUnqualifiedArrayType.
inline SplitQualType getSplitUnqualifiedType() const;
/// \brief Determine whether this type is more qualified than the other