Overview
Comment: | Throw an exception when trying to use +[dealloc]. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
5e88aed650ebff83ba09df1a497615fc |
User & Date: | js on 2010-01-03 19:38:23 |
Other Links: | manifest | tags |
Context
2010-01-03
| ||
20:59 | Improve Fast Enumeration test. check-in: 28543f9fd0 user: js tags: trunk | |
19:38 | Throw an exception when trying to use +[dealloc]. check-in: 5e88aed650 user: js tags: trunk | |
18:48 | Check for objc_enumerationMutation and provide it if it's missing. check-in: 2c40c95434 user: js tags: trunk | |
Changes
Modified src/OFObject.m from [c5b8c0b3b5] to [5be7057eec].
︙ | ︙ | |||
566 567 568 569 570 571 572 573 574 | + (void)release { } + (void)dealloc { } @end | > > | 566 567 568 569 570 571 572 573 574 575 576 | + (void)release { } + (void)dealloc { @throw [OFNotImplementedException newWithClass: self selector: _cmd]; } @end |