aboutsummaryrefslogtreecommitdiff
path: root/lib/Sema/SemaObjCProperty.cpp
diff options
context:
space:
mode:
authorFariborz Jahanian <fjahanian@apple.com>2012-06-29 19:05:11 +0000
committerFariborz Jahanian <fjahanian@apple.com>2012-06-29 19:05:11 +0000
commit2578532c7323efdd68ec42a31b7bdf72e5218867 (patch)
tree95f9fe725efa1c9e4813e0bfa5200d2df909ce4b /lib/Sema/SemaObjCProperty.cpp
parent20e7d992140cc6bc94f2e65f3638346527150756 (diff)
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
Diffstat (limited to 'lib/Sema/SemaObjCProperty.cpp')
-rw-r--r--lib/Sema/SemaObjCProperty.cpp2
1 files changed, 1 insertions, 1 deletions
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);