ObjFW  Diff

Differences From Artifact [dfe3b68b31]:

To Artifact [0d3563afe7]:


483
484
485
486
487
488
489

490
491

492
493
494
495
496
497
498
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500







+


+








- (uint32_t)hash
{
	uint32_t hash;
	size_t i;

	OF_HASH_INIT(hash);

	for (i = 0; i < count * itemSize; i++)
		OF_HASH_ADD(hash, ((char*)data)[i]);

	OF_HASH_FINALIZE(hash);

	return hash;
}

- (OFString*)description
{