ObjFW  Diff

Differences From Artifact [a4b014ae97]:

To Artifact [97b4c86e48]:


141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157

- initWithObjects: (id const*)objects
	    count: (size_t)count
{
	self = [self initWithCapacity: count];

	@try {
		size_t i;

		for (i = 0; i < count; i++)
			[_mapTable setValue: (void*)1
				     forKey: objects[i]];
	} @catch (id e) {
		[self release];
		@throw e;
	}








<
<
|







141
142
143
144
145
146
147


148
149
150
151
152
153
154
155

- initWithObjects: (id const*)objects
	    count: (size_t)count
{
	self = [self initWithCapacity: count];

	@try {


		for (size_t i = 0; i < count; i++)
			[_mapTable setValue: (void*)1
				     forKey: objects[i]];
	} @catch (id e) {
		[self release];
		@throw e;
	}