diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2012-09-24 22:00:36 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2012-09-24 22:00:36 +0000 |
commit | 59ed9e40bbb6d0b8f8cd194e059624e954b0eae7 (patch) | |
tree | 190c0872bd46d09e77dd24fa747faf07289a97db /test/SemaObjC/arc-unavailable-for-weakref.m | |
parent | 81d18bf944bd885c48b693c2c8c651607001ad9d (diff) |
objective-C: remove use of 'ivar' in favor of
'instance variable' in text of all diagnostics
for objective-C: // rdar://12352442
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@164559 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/SemaObjC/arc-unavailable-for-weakref.m')
-rw-r--r-- | test/SemaObjC/arc-unavailable-for-weakref.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/SemaObjC/arc-unavailable-for-weakref.m b/test/SemaObjC/arc-unavailable-for-weakref.m index 8498de6d9a..b140c64da7 100644 --- a/test/SemaObjC/arc-unavailable-for-weakref.m +++ b/test/SemaObjC/arc-unavailable-for-weakref.m @@ -60,5 +60,5 @@ __attribute__((objc_arc_weak_reference_unavailable)) @end @implementation I -@synthesize font = _font; // expected-error {{synthesis of a weak-unavailable property is disallowed because it requires synthesis of an ivar of the __weak object}} +@synthesize font = _font; // expected-error {{synthesis of a weak-unavailable property is disallowed because it requires synthesis of an instance variable of the __weak object}} @end |