ObjFW  Check-in [7dfb3c2c89]

Overview
Comment:OFMutableSet: Add missing override for -[copy]
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 7dfb3c2c896100984973a2a8227536a8285f1c5905052b4c362299631d19bb5a
User & Date: js on 2017-10-17 21:02:38
Other Links: manifest | tags
Context
2017-10-17
21:06
OF{Pair,Triple}: Add designated initializer check-in: 262b3c5801 user: js tags: trunk
21:02
OFMutableSet: Add missing override for -[copy] check-in: 7dfb3c2c89 user: js tags: trunk
00:33
Do not use implicit method return types check-in: 2f4e0df8be user: js tags: trunk
Changes

Modified src/OFMutableSet.m from [1df07a3c74] to [0472c040ab].

139
140
141
142
143
144
145





146
147
148
149
150
151
152
	return [super init];
}

- (instancetype)initWithCapacity: (size_t)capacity
{
	OF_INVALID_INIT_METHOD
}






- (void)addObject: (id)object
{
	OF_UNRECOGNIZED_SELECTOR
}

- (void)removeObject: (id)object







>
>
>
>
>







139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
	return [super init];
}

- (instancetype)initWithCapacity: (size_t)capacity
{
	OF_INVALID_INIT_METHOD
}

- (id)copy
{
	return [[OFSet alloc] initWithSet: self];
}

- (void)addObject: (id)object
{
	OF_UNRECOGNIZED_SELECTOR
}

- (void)removeObject: (id)object