quinntaylor / CHDataStructures

An Objective-C library of data structures, such as deque, heap, linked list, queue, stack, and tree.
Other
388 stars 78 forks source link

Migrate to ARC #8

Open quinntaylor opened 9 years ago

quinntaylor commented 9 years ago

This project was originally written before ARC was introduced, and uses manual retain-release code. Moving to ARC allows for eliminating that code, which improves maintainability. In addition, code that currently deals with CoreFoundation types can (in most places) use CFBridgingRelease to transfer ownership to ARC and simplify that as well.

ghost commented 9 years ago

Do you want to eliminate non-ARC code or just add support for ARC?

dbrisinda commented 9 years ago

Is there any status on the migration to ARC?

quinntaylor commented 9 years ago

At the moment, no status. I'm extremely busy working on future releases of Xcode right now.

At the very least, I will remove GC support, and probably migrate to ARC-only. Since MRR and ARC code can intermingle, this should not be an issue.