Differences From Artifact [2b59628bd4]:
- File src/OFArray_adjacent.m — part of check-in [a06354b42a] at 2017-10-22 15:05:39 on branch trunk — Make Apple GCC with -Wshadow happy (user: js, size: 7109) [annotate] [blame] [check-ins using]
To Artifact [6dbe5f8af8]:
- File src/OFArray_adjacent.m — part of check-in [526feacebc] at 2017-11-11 23:27:09 on branch trunk — Small optimization for -[isEqual:] (user: js, size: 7146) [annotate] [blame] [check-ins using]
︙ | |||
278 279 280 281 282 283 284 285 286 287 288 289 290 291 | 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 | + + + | } - (bool)isEqual: (id)object { OFArray *otherArray; id const *objects, *otherObjects; size_t count; if (object == self) return true; if (![object isKindOfClass: [OFArray_adjacent class]] && ![object isKindOfClass: [OFMutableArray_adjacent class]]) return [super isEqual: object]; otherArray = object; |
︙ |