ObjFW  Diff

Differences From Artifact [638078253b]:

To Artifact [a01dde889d]:


354
355
356
357
358
359
360

361
362
363


364
365


366



367
368
369
370
371
372
373
374
	OF_HASH_FINALIZE(hash);

	return hash;
}

- (OFString*)description
{

	OFMutableString *ret;

	ret = (OFMutableString*)[self componentsJoinedByString: @", "];


	[ret prependString: @"("];
	[ret appendString: @")"];






	return ret;
}

- (int)countByEnumeratingWithState: (of_fast_enumeration_state_t*)state
			   objects: (id*)objects
			     count: (int)count_
{
	size_t count = [array count];







>


|
>
>
|
|
>
>
|
>
>
>
|







354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
	OF_HASH_FINALIZE(hash);

	return hash;
}

- (OFString*)description
{
	OFAutoreleasePool *pool = [[OFAutoreleasePool alloc] init];
	OFMutableString *ret;

	ret = [[self componentsJoinedByString: @", "] mutableCopy];

	@try {
		[ret prependString: @"("];
		[ret appendString: @")"];
	} @catch (id e) {
		[ret release];
	}

	[pool release];

	return [ret autorelease];
}

- (int)countByEnumeratingWithState: (of_fast_enumeration_state_t*)state
			   objects: (id*)objects
			     count: (int)count_
{
	size_t count = [array count];