ObjFW  Diff

Differences From Artifact [f3bb080962]:

To Artifact [4285e1f843]:


77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
}

- initWithArray: (OFArray*)array
{
	self = [self init];

	@try {
		id *objects = [array objects];
		size_t i, count = [array count];

		for (i = 0; i < count; i++)
			[self addObject: objects[i]];
	} @catch (id e) {
		[self release];
		@throw e;







|







77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
}

- initWithArray: (OFArray*)array
{
	self = [self init];

	@try {
		id const *objects = [array objects];
		size_t i, count = [array count];

		for (i = 0; i < count; i++)
			[self addObject: objects[i]];
	} @catch (id e) {
		[self release];
		@throw e;