ObjFW  Diff

Differences From Artifact [259e8f3f61]:

To Artifact [a4ecf96225]:


21
22
23
24
25
26
27
28

29
30
31
32
33

34
35
36
37
38
39
40
21
22
23
24
25
26
27

28
29
30
31
32

33
34
35
36
37
38
39
40







-
+




-
+








@implementation OFAllocFailedException
+ (instancetype)exception
{
	OF_UNRECOGNIZED_SELECTOR
}

+ alloc
+ (instancetype)alloc
{
	OF_UNRECOGNIZED_SELECTOR
}

- init
- (instancetype)init
{
	OF_INVALID_INIT_METHOD
}

- (void *)allocMemoryWithSize: (size_t)size
{
	OF_UNRECOGNIZED_SELECTOR
60
61
62
63
64
65
66
67

68
69
70
71
72

73
74
75
76
77
78
79
60
61
62
63
64
65
66

67
68
69
70
71

72
73
74
75
76
77
78
79







-
+




-
+







}

- (void)freeMemory: (void *)ptr
{
	OF_UNRECOGNIZED_SELECTOR
}

- retain
- (instancetype)retain
{
	return self;
}

- autorelease
- (instancetype)autorelease
{
	return self;
}

- (unsigned int)retainCount
{
	return OF_RETAIN_COUNT_MAX;