Skip to content

Commit

Permalink
Can not use MR_AUTORELEASE like normal autorelease.
Browse files Browse the repository at this point in the history
  • Loading branch information
crayment committed Dec 7, 2011
1 parent 04d6861 commit 8c75ec6
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,8 @@ - (NSMutableDictionary *) MR_dictionaryByMergingDictionary:(NSDictionary *)d;
{
NSMutableDictionary *mutDict = [self mutableCopy];
[mutDict addEntriesFromDictionary:d];
return MR_AUTORELEASE(mutDict);
MR_AUTORELEASE(mutDict)
return mutDict;
}

@end

0 comments on commit 8c75ec6

Please sign in to comment.