ObjFW  Diff

Differences From Artifact [d8924dd60b]:

To Artifact [030fa83d33]:


313
314
315
316
317
318
319
320

321
322

323
324

325
326

327
328

329
330
331
332
333
334
335
313
314
315
316
317
318
319

320
321

322
323

324


325
326

327
328
329
330
331
332
333
334







-
+

-
+

-
+
-
-
+

-
+







	copy->_lastListItem = listItem;

	return copy;
}

- (unsigned long)hash
{
	uint32_t hash;
	unsigned long hash;

	OF_HASH_INIT(hash);
	OFHashInit(&hash);

	for (OFListItem *iter = _firstListItem;
	for (OFListItem *iter = _firstListItem; iter != NULL; iter = iter->next)
	    iter != NULL; iter = iter->next)
		OF_HASH_ADD_HASH(hash, [iter->object hash]);
		OFHashAddHash(&hash, [iter->object hash]);

	OF_HASH_FINALIZE(hash);
	OFHashFinalize(&hash);

	return hash;
}

- (OFString *)description
{
	OFMutableString *ret;