ObjFW  Diff

Differences From Artifact [3156715ede]:

To Artifact [05916c8969]:


32
33
34
35
36
37
38
39
40
41
42
43
44
45
46

#define MIN_CAPACITY 16

struct of_map_table_bucket {
	void *key, *value;
	uint32_t hash;
};
static struct of_map_table_bucket deleted = {};

static void*
defaultRetain(void *value)
{
	return value;
}








|







32
33
34
35
36
37
38
39
40
41
42
43
44
45
46

#define MIN_CAPACITY 16

struct of_map_table_bucket {
	void *key, *value;
	uint32_t hash;
};
static struct of_map_table_bucket deleted = { 0 };

static void*
defaultRetain(void *value)
{
	return value;
}