ObjFW  Diff

Differences From Artifact [2b8f65eef1]:

To Artifact [e8a22a012c]:


111
112
113
114
115
116
117


118

119
120
121
122
123
124
125
111
112
113
114
115
116
117
118
119

120
121
122
123
124
125
126
127







+
+
-
+








	if (![otherMethod->name isEqual: name])
		return NO;

	if ((otherMethod->typeEncoding == NULL && typeEncoding != NULL) ||
	    (otherMethod->typeEncoding != NULL && typeEncoding == NULL))
		return NO;

	if (otherMethod->typeEncoding != NULL && typeEncoding != NULL &&
	if (strcmp(otherMethod->typeEncoding, typeEncoding))
	    strcmp(otherMethod->typeEncoding, typeEncoding))
		return NO;

	return YES;
}

- (uint32_t)hash
{