diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-06-01 17:27:37 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-06-01 17:27:37 +0000 |
commit | bacf3d7ca46f784a8b2bdb5fec37b06ed6a42b68 (patch) | |
tree | fb4486270cdf27ed853b354fc428c010f7921bb4 | |
parent | a12823f6c0ec9e0e644a9d0ee153e973f49c63fc (diff) |
Update test case.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@72694 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/SemaObjC/property-7.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/SemaObjC/property-7.m b/test/SemaObjC/property-7.m index 5812b97427..99c16cef73 100644 --- a/test/SemaObjC/property-7.m +++ b/test/SemaObjC/property-7.m @@ -28,7 +28,7 @@ typedef struct _NSZone NSZone; @implementation SCMNode @synthesize name = _name; - - (void) setParent:(SCMNode*) inParent { + - (void) setParent:(SCMObject *__attribute__((objc_gc(weak)))) inParent { super.parent = inParent; } @end |