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/weak-property.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/weak-property.m')
-rw-r--r-- | test/SemaObjC/weak-property.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/SemaObjC/weak-property.m b/test/SemaObjC/weak-property.m index 8a2adf99b7..141c35b9ac 100644 --- a/test/SemaObjC/weak-property.m +++ b/test/SemaObjC/weak-property.m @@ -19,6 +19,6 @@ @end @implementation WeakPropertyTest -@synthesize x; // expected-error {{existing ivar 'x' for __weak property 'x' must be __weak}} +@synthesize x; // expected-error {{existing instance variable 'x' for __weak property 'x' must be __weak}} @dynamic value1, value, value2, v1,v2,v3,v4; @end |