diff options
-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 |