ObjFW  Diff

Differences From Artifact [6b2c31fa22]:

To Artifact [3f54c3ecda]:


26
27
28
29
30
31
32
33







34
35
36
37
38
39


40
41
42
43
44
45



46
47
48
49
50
51
52
53
54
55
56
57

58
59
60
61
62
63
64
26
27
28
29
30
31
32

33
34
35
36
37
38
39
40
41
42
43


44
45
46
47
48
49


50
51
52
53
54
55
56








57
58
59
60
61
62
63
64







-
+
+
+
+
+
+
+




-
-
+
+




-
-
+
+
+




-
-
-
-
-
-
-
-
+







}

- init
{
	OF_INVALID_INIT_METHOD
}

- (void*)allocMemoryWithSize: (size_t)size
- (void *)allocMemoryWithSize: (size_t)size
{
	OF_UNRECOGNIZED_SELECTOR
}

- (void *)allocMemoryForNItems: (size_t)nitems
		      withSize: (size_t)size
{
	OF_UNRECOGNIZED_SELECTOR
}

- (void*)allocMemoryForNItems: (size_t)nitems
                     withSize: (size_t)size
- (void *)resizeMemory: (void *)ptr
		toSize: (size_t)size
{
	OF_UNRECOGNIZED_SELECTOR
}

- (void*)resizeMemory: (void*)ptr
	       toSize: (size_t)size
- (void *)resizeMemory: (void *)ptr
	      toNItems: (size_t)nitems
	      withSize: (size_t)size
{
	OF_UNRECOGNIZED_SELECTOR
}

- (void*)resizeMemory: (void*)ptr
	     toNItems: (size_t)nitems
	     withSize: (size_t)size
{
	OF_UNRECOGNIZED_SELECTOR
}

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

- retain
{
	return self;
79
80
81
82
83
84
85
86

87
88
89
90
79
80
81
82
83
84
85

86
87
88
89
90







-
+




}

- (void)dealloc
{
	OF_DEALLOC_UNSUPPORTED
}

- (OFString*)description
- (OFString *)description
{
	return @"Allocating an object failed!";
}
@end