ObjFW  Diff

Differences From Artifact [b2b37f6565]:

To Artifact [48bc1264c2]:


43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
		return [object NSObject];

	return object;
}

- (NSUInteger)count
{
	size_t count = [_array count];

	if (count > NSUIntegerMax)
		@throw [OFOutOfRangeException exception];

	return (NSUInteger)count;
}
@end







|







43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
		return [object NSObject];

	return object;
}

- (NSUInteger)count
{
	size_t count = _array.count;

	if (count > NSUIntegerMax)
		@throw [OFOutOfRangeException exception];

	return (NSUInteger)count;
}
@end