ObjFW  Diff

Differences From Artifact [da8c7b7372]:

To Artifact [81cca6b06a]:


168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
	return columns;
}

- (BOOL)isEqual: (id)object
{
	OFFloatMatrix *otherMatrix;

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

	otherMatrix = object;

	if (otherMatrix->rows != rows || otherMatrix->columns != columns)
		return NO;








|







168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
	return columns;
}

- (BOOL)isEqual: (id)object
{
	OFFloatMatrix *otherMatrix;

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

	otherMatrix = object;

	if (otherMatrix->rows != rows || otherMatrix->columns != columns)
		return NO;