ObjFW  Diff

Differences From Artifact [8f9e858d65]:

To Artifact [14423bcc6c]:


18
19
20
21
22
23
24

25

26
27
28
29
30
31
32
18
19
20
21
22
23
24
25

26
27
28
29
30
31
32
33







+
-
+








#include <stdio.h>
#include <stdlib.h>

#include "runtime.h"
#include "runtime-private.h"

#import "globals.h"
static objc_enumeration_mutation_handler enumeration_mutation_handler = NULL;
#define enumeration_mutation_handler objc_globals.enumeration_mutation_handler

void
objc_enumerationMutation(id obj)
{
	if (enumeration_mutation_handler != NULL)
		enumeration_mutation_handler(obj);
	else