Commit 4a1d9edf authored by David Reid's avatar David Reid

iOS: Fix build when ARC is not enabled.

parent ae066d57
...@@ -32417,6 +32417,12 @@ static ma_result ma_device__untrack__coreaudio(ma_device* pDevice) ...@@ -32417,6 +32417,12 @@ static ma_result ma_device__untrack__coreaudio(ma_device* pDevice)
-(void)dealloc -(void)dealloc
{ {
[self remove_handler]; [self remove_handler];
#if defined(__has_feature)
#if !__has_feature(objc_arc)
[super dealloc];
#endif
#endif
} }
-(void)remove_handler -(void)remove_handler
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment