ObjFW  Diff

Differences From Artifact [4d978dda45]:

To Artifact [664ced47ee]:


66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
		[self release];
		@throw e;
	}

	return self;
}

- (BOOL)isEqual: (id)object
{
	OFXMLComment *comment;

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

	comment = object;

	return ([comment->_comment isEqual: _comment]);
}

- (uint32_t)hash







|




|







66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
		[self release];
		@throw e;
	}

	return self;
}

- (bool)isEqual: (id)object
{
	OFXMLComment *comment;

	if (![object isKindOfClass: [OFXMLComment class]])
		return false;

	comment = object;

	return ([comment->_comment isEqual: _comment]);
}

- (uint32_t)hash