ObjFW  Diff

Differences From Artifact [9e52939923]:

To Artifact [0b7ef4c480]:


51
52
53
54
55
56
57
58
59
60
61
62
63

	[super dealloc];
}

- (OFString*)description
{
	return [OFString stringWithFormat:
	    @"Memory at %p was not allocated as part of object of type %@, "
	    @"thus the memory allocation was not changed! It is also possible "
	    @"that there was an attempt to free the same memory twice.",
	    _pointer, [_object class]];
}
@end







|
|
|
|


51
52
53
54
55
56
57
58
59
60
61
62
63

	[super dealloc];
}

- (OFString*)description
{
	return [OFString stringWithFormat:
	    @"Deallocation or reallocation of memory not allocated as part of "
	    @"object of type %@ was attempted! It is also possible that there "
	    @"was an attempt to free the same memory twice.",
	    [_object class]];
}
@end