iOS: Fix build when ARC is not enabled.

This commit is contained in:
David Reid
2022-04-10 20:13:57 +10:00
parent ae066d57e9
commit 4a1d9edff3
+6
View File
@@ -32417,6 +32417,12 @@ static ma_result ma_device__untrack__coreaudio(ma_device* pDevice)
-(void)dealloc
{
[self remove_handler];
#if defined(__has_feature)
#if !__has_feature(objc_arc)
[super dealloc];
#endif
#endif
}
-(void)remove_handler