Skip to content

Commit

Permalink
Fix for CPProxy not returning the return value
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom Robinson committed Sep 13, 2010
1 parent 0326392 commit 1220555
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Foundation/CPProxy.j
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
// FIXME: This should be moved to the runtime?
- (void)forward:(SEL)aSelector :(marg_list)args
{
[CPObject methodForSelector:_cmd](self, _cmd, aSelector, args);
return [CPObject methodForSelector:_cmd](self, _cmd, aSelector, args);
}

- (unsigned)hash
Expand Down

0 comments on commit 1220555

Please sign in to comment.