from 'id' result type when deciding on migration
to instancetype.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@187684
91177308-0d34-0410-b5e6-
96231b3b80d8
ObjCContainerDecl *CDecl,
ObjCMethodDecl *OM,
ObjCInstanceTypeFamily OIT_Family) {
- if (OM->isInstanceMethod() || !OM->getResultType()->isObjCIdType())
+ if (OM->isInstanceMethod() ||
+ OM->getResultType() == Ctx.getObjCInstanceType() ||
+ !OM->getResultType()->isObjCIdType())
return;
// Candidate factory methods are + (id) NaMeXXX : ... which belong to a class