Differences From Artifact [cd4f398255]:
- File src/OFExceptions.m — part of check-in [615eb3e46b] at 2011-03-07 16:00:39 on branch trunk — Add class OFCondition. (user: js, size: 35228) [annotate] [blame] [check-ins using]
To Artifact [cb05df6236]:
- File
src/OFExceptions.m
— part of check-in
[8de8df50e9]
at
2011-03-23 12:58:36
on branch trunk
— Make the return type of retainCount unsigned int.
This way, the OFObject protocol is compatible to NSObject. (user: js, size: 35245) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
123 124 125 126 127 128 129 | } - autorelease { return self; } | | | | 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 | } - autorelease { return self; } - (unsigned int)retainCount { return OF_RETAIN_COUNT_MAX; } - (void)release { } - (void)dealloc |
︙ | ︙ |