ObjFW  Diff

Differences From Artifact [b7dda03eca]:

To Artifact [b1114f3a89]:


17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#include "config.h"

#include <stdlib.h>

#import "OFAutoreleasePool.h"
#import "OFArray.h"

#import "OFNotImplementedException.h"

#import "macros.h"
#ifndef OF_COMPILER_TLS
# import "threading.h"

# import "OFInitializationFailedException.h"
#endif








<
<







17
18
19
20
21
22
23


24
25
26
27
28
29
30
#include "config.h"

#include <stdlib.h>

#import "OFAutoreleasePool.h"
#import "OFArray.h"



#import "macros.h"
#ifndef OF_COMPILER_TLS
# import "threading.h"

# import "OFInitializationFailedException.h"
#endif

157
158
159
160
161
162
163
164
165

166
167
168
169
170
171

172
173
	}

	[super dealloc];
}

- retain
{
	@throw [OFNotImplementedException exceptionWithClass: [self class]
						    selector: _cmd];

}

- autorelease
{
	@throw [OFNotImplementedException exceptionWithClass: [self class]
						    selector: _cmd];

}
@end







<
|
>




<
|
>


155
156
157
158
159
160
161

162
163
164
165
166
167

168
169
170
171
	}

	[super dealloc];
}

- retain
{

	[self doesNotRecognizeSelector: _cmd];
	abort();
}

- autorelease
{

	[self doesNotRecognizeSelector: _cmd];
	abort();
}
@end