Overview
| Comment: | Don't create and release a pool in -[enumerateObjectsUsingBlock:].
This would make it impossible to use autoreleased objects after the |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
bfb7745f9533e44ae8888bab6e948fee |
| User & Date: | js on 2011-07-28 20:50:09 |
| Other Links: | manifest | tags |
Context
|
2011-07-28
| ||
| 21:31 | Add +[elementWithFile:] to OFXMLElement. (check-in: 7d5e2ebb80 user: js tags: trunk) | |
| 20:50 | Don't create and release a pool in -[enumerateObjectsUsingBlock:]. (check-in: bfb7745f95 user: js tags: trunk) | |
|
2011-07-26
| ||
| 21:42 | Add OFCountedSet. (check-in: eb791d09d1 user: js tags: trunk) | |
Changes
Modified src/OFArray.m from [ce913f08f5] to [1f143f64a7].
| ︙ | |||
578 579 580 581 582 583 584 | 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 | - - + - - - - |
dataArray: array
mutationsPointer: NULL] autorelease];
}
#ifdef OF_HAVE_BLOCKS
- (void)enumerateObjectsUsingBlock: (of_array_enumeration_block_t)block
{
|
| ︙ |
Modified src/OFDictionary.m from [95bb1cf3d0] to [39169fee1e].
| ︙ | |||
730 731 732 733 734 735 736 | 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 | - - - + + - - - - - |
return i;
}
#ifdef OF_HAVE_BLOCKS
- (void)enumerateKeysAndObjectsUsingBlock:
(of_dictionary_enumeration_block_t)block
{
|
| ︙ |