ObjFW  Diff

Differences From Artifact [a3c8b1ddd3]:

To Artifact [d509c1b2b1]:


50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
		return [object NSObject];

	return object;
}

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

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

	return (NSUInteger)count;
}
@end







|







50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
		return [object NSObject];

	return object;
}

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

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

	return (NSUInteger)count;
}
@end