ObjFW  Diff

Differences From Artifact [806072ba44]:

To Artifact [97782e7ade]:


101
102
103
104
105
106
107
108





109
110
111
112
113
114
115
	items -= nitems;

	return self;
}
@end

@implementation OFBigArray
- initWithSize: (size_t)is





{
	if ((self = [super init]))
		size = 0;

	return self;
}








|
>
>
>
>
>







101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
	items -= nitems;

	return self;
}
@end

@implementation OFBigArray
+ newWithItemSize: (size_t)is
{
	return [[OFBigArray alloc] initWithItemSize: is];
}

- initWithItemSize: (size_t)is
{
	if ((self = [super init]))
		size = 0;

	return self;
}