From: Fariborz Jahanian Date: Fri, 29 Jun 2012 19:05:11 +0000 (+0000) Subject: fix a typo in my last commit. I thought I recompiled, X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2578532c7323efdd68ec42a31b7bdf72e5218867;p=clang fix a typo in my last commit. I thought I recompiled, but apparently I did not. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@159452 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Sema/SemaObjCProperty.cpp b/lib/Sema/SemaObjCProperty.cpp index aace5ec11b..34dd068945 100644 --- a/lib/Sema/SemaObjCProperty.cpp +++ b/lib/Sema/SemaObjCProperty.cpp @@ -829,7 +829,7 @@ Decl *Sema::ActOnPropertyImplDecl(Scope *S, if (originalIvar) { Diag(PropertyDiagLoc, diag::warn_autosynthesis_property_ivar_match) - << propertyId << (Ivar == 0) << PropertyIvar + << PropertyId << (Ivar == 0) << PropertyIvar << originalIvar->getIdentifier(); Diag(property->getLocation(), diag::note_property_declare); Diag(originalIvar->getLocation(), diag::note_ivar_decl);