ObjFW  Diff

Differences From Artifact [4cf2dc29e8]:

To Artifact [3d86fbe75e]:


68
69
70
71
72
73
74
75
76
77
78
79

80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
68
69
70
71
72
73
74





75













76
77
78
79
80
81
82







-
-
-
-
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-








- (instancetype)initWithObject: (id)firstObject arguments: (va_list)arguments
{
	return (id)[[OFMapTableSet alloc] initWithObject: firstObject
					       arguments: arguments];
}

- (instancetype)retain
{
	return self;
}

OF_SINGLETON_METHODS
- (instancetype)autorelease
{
	return self;
}

- (void)release
{
}

- (void)dealloc
{
	OF_DEALLOC_UNSUPPORTED
}
@end

@implementation OFSet
+ (void)initialize
{
	if (self == [OFSet class])
		object_setClass((id)&placeholder, [OFSetPlaceholder class]);