Overview
| Comment: | OFMutableSet: Add missing override for -[copy] |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | 0.90 |
| Files: | files | file ages | folders |
| SHA3-256: |
3677275df78264c922a4891831678a0e |
| User & Date: | js on 2017-10-17 21:04:31 |
| Other Links: | branch diff | manifest | tags |
Context
|
2017-10-19
| ||
| 21:05 | src/platform.h: Better check for iOS (check-in: d2ad773ef4 user: js tags: 0.90) | |
|
2017-10-17
| ||
| 21:04 | OFMutableSet: Add missing override for -[copy] (check-in: 3677275df7 user: js tags: 0.90) | |
|
2017-10-15
| ||
| 22:51 | Rename __GCC_VERSION__ to OF_GCC_VERSION (check-in: d6fa7f9bf6 user: js tags: 0.90) | |
Changes
Modified src/OFMutableSet.m from [be0ab30e62] to [475e73874b].
| ︙ | |||
139 140 141 142 143 144 145 146 147 148 149 150 151 152 | 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 | + + + + + |
return [super init];
}
- initWithCapacity: (size_t)capacity
{
OF_INVALID_INIT_METHOD
}
- copy
{
return [[OFSet alloc] initWithSet: self];
}
- (void)addObject: (id)object
{
OF_UNRECOGNIZED_SELECTOR
}
- (void)removeObject: (id)object
|
| ︙ |