Pass the decl directly to the diagnostic, no need to call getDeclName().
authorArgyrios Kyrtzidis <akyrtzi@gmail.com>
Fri, 3 Jan 2014 19:39:23 +0000 (19:39 +0000)
committerArgyrios Kyrtzidis <akyrtzi@gmail.com>
Fri, 3 Jan 2014 19:39:23 +0000 (19:39 +0000)
llvm-svn: 198442

clang/lib/Sema/SemaDeclObjC.cpp

index 8279263..8e9d27d 100644 (file)
@@ -3572,7 +3572,7 @@ void Sema::DiagnoseUnusedBackingIvarInAccessor(Scope *S,
     // cases where the ivar is accessed by another method that the accessor
     // delegates to.
     if (!IV->isReferenced() || !Checker.InvokedSelfMethod) {
-      Diag(Loc, DIAG) << IV->getDeclName();
+      Diag(Loc, DIAG) << IV;
       Diag(PDecl->getLocation(), diag::note_property_declare);
     }
   }