Differences From Artifact [af5a656bb6]:
- File
src/OFArray.m
— part of check-in
[37db8f0fb3]
at
2010-04-17 22:27:17
on branch trunk
— New ivar naming convention.
ivars are now named like this: thisIsAnIVar. If an accessor exists for
the ivar, the ivar is named like the accessor. This is required for
@property to work. (user: js, size: 6631) [annotate] [blame] [check-ins using]
To Artifact [54c48d5def]:
- File src/OFArray.m — part of check-in [8c23ddc0a0] at 2010-06-13 16:50:30 on branch trunk — Work around a stupid gcc bug. (user: js, size: 6630) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
126 127 128 129 130 131 132 |
- initWithCArray: (OFObject**)objs
{
id *obj;
size_t count;
self = [self init];
| | | 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 |
- initWithCArray: (OFObject**)objs
{
id *obj;
size_t count;
self = [self init];
count = 0;
for (obj = objs; *obj != nil; obj++) {
[*obj retain];
count++;
}
|
| ︙ | ︙ |