diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2012-05-08 18:03:39 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2012-05-08 18:03:39 +0000 |
commit | 5ea66619a3108e2985e952b9a60a84316d464b25 (patch) | |
tree | 3f9ea69822791758dd66831fc0d6639e45e87700 /lib/Sema/SemaObjCProperty.cpp | |
parent | 101d4e0c8ffbcdaaa58cddf1c20f98aa1b4501c4 (diff) |
Fixes a typo. note_xxx not not_xxx.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@156391 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/SemaObjCProperty.cpp')
-rw-r--r-- | lib/Sema/SemaObjCProperty.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Sema/SemaObjCProperty.cpp b/lib/Sema/SemaObjCProperty.cpp index be0de14fd3..8e767e21bd 100644 --- a/lib/Sema/SemaObjCProperty.cpp +++ b/lib/Sema/SemaObjCProperty.cpp @@ -1428,7 +1428,7 @@ void Sema::DefaultSynthesizeProperties(Scope *S, ObjCImplDecl* IMPDecl, SourceLocation())); if (PIDecl) { Diag(Prop->getLocation(), diag::warn_missing_explicit_synthesis); - Diag(IMPDecl->getLocation(), diag::not_while_in_implementation); + Diag(IMPDecl->getLocation(), diag::note_while_in_implementation); } } } |