ObjFW  Diff

Differences From Artifact [8abac033d7]:

To Artifact [b911edeffb]:


414
415
416
417
418
419
420
421

422
423
424
425
426
427
428
429
414
415
416
417
418
419
420

421

422
423
424
425
426
427
428







-
+
-







{
	return [_mapTable countByEnumeratingWithState: state
					      objects: objects
						count: count];
}

#ifdef OF_HAVE_BLOCKS
- (void)enumerateKeysAndObjectsUsingBlock:
- (void)enumerateKeysAndObjectsUsingBlock: (OFDictionaryEnumerationBlock)block
    (of_dictionary_enumeration_block_t)block
{
	@try {
		[_mapTable enumerateKeysAndObjectsUsingBlock:
		    ^ (void *key, void *object, bool *stop) {
			block(key, object, stop);
		}];
	} @catch (OFEnumerationMutationException *e) {