ObjFW  Diff

Differences From Artifact [752a63309a]:

To Artifact [31cc237dd8]:


348
349
350
351
352
353
354

355
356
357
358
359
360
361

	[array release];

	[super dealloc];
}
@end


@implementation OFArrayEnumerator
- initWithDataArray: (OFDataArray*)array_
   mutationsPointer: (unsigned long*)mutations_ptr_;
{
	self = [super init];

	array = array_;







>







348
349
350
351
352
353
354
355
356
357
358
359
360
361
362

	[array release];

	[super dealloc];
}
@end

/// \cond internal
@implementation OFArrayEnumerator
- initWithDataArray: (OFDataArray*)array_
   mutationsPointer: (unsigned long*)mutations_ptr_;
{
	self = [super init];

	array = array_;
383
384
385
386
387
388
389

		@throw [OFEnumerationMutationException newWithClass: isa];

	pos = 0;

	return self;
}
@end








>
384
385
386
387
388
389
390
391
		@throw [OFEnumerationMutationException newWithClass: isa];

	pos = 0;

	return self;
}
@end
/// \endcond