From: Argyrios Kyrtzidis Date: Sun, 6 Nov 2011 18:58:07 +0000 (+0000) Subject: [arcmt] Make PropertiesRewriter::getPropertyType return the unqualified type. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1d5fb8f6e85a5c9c7b9b611be655454159c92f12;p=clang [arcmt] Make PropertiesRewriter::getPropertyType return the unqualified type. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@143884 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/ARCMigrate/TransProperties.cpp b/lib/ARCMigrate/TransProperties.cpp index 85eb156935..1512e4e96d 100644 --- a/lib/ARCMigrate/TransProperties.cpp +++ b/lib/ARCMigrate/TransProperties.cpp @@ -125,8 +125,7 @@ public: I = AtProps.begin(), E = AtProps.end(); I != E; ++I) { SourceLocation atLoc = SourceLocation::getFromRawEncoding(I->first); PropsTy &props = I->second; - QualType ty = getPropertyType(props); - if (!ty->isObjCRetainableType()) + if (!getPropertyType(props)->isObjCRetainableType()) continue; if (hasIvarWithExplicitOwnership(props)) continue; @@ -486,11 +485,11 @@ private: QualType getPropertyType(PropsTy &props) const { assert(!props.empty()); - QualType ty = props[0].PropD->getType(); + QualType ty = props[0].PropD->getType().getUnqualifiedType(); #ifndef NDEBUG for (PropsTy::iterator I = props.begin(), E = props.end(); I != E; ++I) - assert(ty == I->PropD->getType()); + assert(ty == I->PropD->getType().getUnqualifiedType()); #endif return ty;