ObjFW  Diff

Differences From Artifact [24150756a9]:

To Artifact [3b46b56f41]:


132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
	return dimension;
}

- (BOOL)isEqual: (id)object
{
	OFFloatVector *otherVector;

	if (object->isa != isa)
		return NO;

	otherVector = object;

	if (otherVector->dimension != dimension)
		return NO;








|







132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
	return dimension;
}

- (BOOL)isEqual: (id)object
{
	OFFloatVector *otherVector;

	if (![object isKindOfClass: [OFFloatVector class]])
		return NO;

	otherVector = object;

	if (otherVector->dimension != dimension)
		return NO;