diff options
| author | Daniel Dunbar <daniel@zuster.org> | 2010-08-17 22:39:59 +0000 |
|---|---|---|
| committer | Daniel Dunbar <daniel@zuster.org> | 2010-08-17 22:39:59 +0000 |
| commit | 56df97761d214030881efbf7c32cf2cce7f9ea8e (patch) | |
| tree | 2fdbf26598f4dea0136644b5791ab69f5b0a1eb5 /clang/lib/Sema/SemaObjCProperty.cpp | |
| parent | f346a3dd680d4b72eb6f20a7c05df09202446b80 (diff) | |
| download | bcm5719-llvm-56df97761d214030881efbf7c32cf2cce7f9ea8e.tar.gz bcm5719-llvm-56df97761d214030881efbf7c32cf2cce7f9ea8e.zip | |
StringRef'ication of lots stuff, patch by Peter Davies!
llvm-svn: 111314
Diffstat (limited to 'clang/lib/Sema/SemaObjCProperty.cpp')
| -rw-r--r-- | clang/lib/Sema/SemaObjCProperty.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Sema/SemaObjCProperty.cpp b/clang/lib/Sema/SemaObjCProperty.cpp index bd9155b0528..9cb6babe44f 100644 --- a/clang/lib/Sema/SemaObjCProperty.cpp +++ b/clang/lib/Sema/SemaObjCProperty.cpp @@ -387,7 +387,7 @@ Sema::DeclPtrTy Sema::ActOnPropertyImplDecl(Scope *S, << property->getDeclName() << Ivar->getDeclName() << ClassDeclared->getDeclName(); Diag(Ivar->getLocation(), diag::note_previous_access_declaration) - << Ivar << Ivar->getNameAsCString(); + << Ivar << Ivar->getName(); // Note! I deliberately want it to fall thru so more errors are caught. } QualType IvarType = Context.getCanonicalType(Ivar->getType()); |

