[cfe-commits] r159452 - /cfe/trunk/lib/Sema/SemaObjCProperty.cpp

Fariborz Jahanian fjahanian at apple.com
Fri Jun 29 12:05:11 PDT 2012


Author: fjahanian
Date: Fri Jun 29 14:05:11 2012
New Revision: 159452

URL: http://llvm.org/viewvc/llvm-project?rev=159452&view=rev
Log:
fix a typo in my last commit. I thought I recompiled,
but apparently I did not.

Modified:
    cfe/trunk/lib/Sema/SemaObjCProperty.cpp

Modified: cfe/trunk/lib/Sema/SemaObjCProperty.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Sema/SemaObjCProperty.cpp?rev=159452&r1=159451&r2=159452&view=diff
==============================================================================
--- cfe/trunk/lib/Sema/SemaObjCProperty.cpp (original)
+++ cfe/trunk/lib/Sema/SemaObjCProperty.cpp Fri Jun 29 14:05:11 2012
@@ -829,7 +829,7 @@
       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);





More information about the cfe-commits mailing list