ObjFW  Diff

Differences From Artifact [554cc90ca9]:

To Artifact [64103fca3f]:


17
18
19
20
21
22
23
24

25
26
27
28
29
30
31
32
33
34
35

36
37
38
39
40
41
42
43
44
45
46
+ list
{
	return [[[OFList alloc] init] autorelease];
}

- init
{
	if ((self = [super init])) {

		first = NULL;
		last = NULL;
		retain_and_release = YES;
	}

	return self;
}

- initWithoutRetainAndRelease
{
	if ((self = [super init])) {

		first = NULL;
		last = NULL;
		retain_and_release = NO;
	}

	return self;
}

- free
{
	of_list_object_t *iter;







|
>
|
|
|
<






|
>
|
|
|
<







17
18
19
20
21
22
23
24
25
26
27
28

29
30
31
32
33
34
35
36
37
38
39

40
41
42
43
44
45
46
+ list
{
	return [[[OFList alloc] init] autorelease];
}

- init
{
	self = [super init];

	first = NULL;
	last = NULL;
	retain_and_release = YES;


	return self;
}

- initWithoutRetainAndRelease
{
	self = [super init];

	first = NULL;
	last = NULL;
	retain_and_release = NO;


	return self;
}

- free
{
	of_list_object_t *iter;