ObjFW  Diff

Differences From Artifact [cedcad6c16]:

To Artifact [66a1baec46]:


73
74
75
76
77
78
79



80
81
82
83
84
85
86

	[super dealloc];
}

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




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

	comment = object;

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







>
>
>







73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89

	[super dealloc];
}

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

	if (object == self)
		return true;

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

	comment = object;

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