mirror of
https://github.com/mackron/miniaudio.git
synced 2026-04-23 16:54:03 +02:00
iOS: Fix build when ARC is not enabled.
This commit is contained in:
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user