ObjFW  Diff

Differences From Artifact [6a9e638b4e]:

To Artifact [b88d2a251a]:


33
34
35
36
37
38
39





40
41
42
43
44
45
		      forKey: object];
}

- (void)removeObject: (id)object
{
	[_mapTable removeObjectForKey: object];
}






- (void)makeImmutable
{
	object_setClass(self, [OFSet_hashtable class]);
}
@end







>
>
>
>
>






33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
		      forKey: object];
}

- (void)removeObject: (id)object
{
	[_mapTable removeObjectForKey: object];
}

- (void)removeAllObjects
{
	[_mapTable removeAllObjects];
}

- (void)makeImmutable
{
	object_setClass(self, [OFSet_hashtable class]);
}
@end