diff options
Diffstat (limited to 'include/clang/AST/Type.h')
-rw-r--r-- | include/clang/AST/Type.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/include/clang/AST/Type.h b/include/clang/AST/Type.h index 67188c1c73..39f10d3393 100644 --- a/include/clang/AST/Type.h +++ b/include/clang/AST/Type.h @@ -853,10 +853,6 @@ public: return *this; } - /// getUnqualifiedObjCPointerType - Returns the unqualified version if - /// Objective-C pointer type; otherwise, returns type as is. - inline QualType getUnqualifiedObjCPointerType() const; - /// operator==/!= - Indicate whether the specified types and qualifiers are /// identical. friend bool operator==(const QualType &LHS, const QualType &RHS) { @@ -4651,11 +4647,6 @@ inline QualType QualType::getUnqualifiedType() const { return QualType(getSplitUnqualifiedTypeImpl(*this).Ty, 0); } - -inline QualType QualType::getUnqualifiedObjCPointerType() const { - return getTypePtr()->isObjCObjectPointerType() ? - getUnqualifiedType() : *this; -} inline SplitQualType QualType::getSplitUnqualifiedType() const { if (!getTypePtr()->getCanonicalTypeInternal().hasLocalQualifiers()) |