Suppress unused field warning

This commit is contained in:
Max Brunsfeld 2024-01-11 16:21:55 -08:00
parent 43fbe6fedf
commit 02029c945a

View file

@ -868,6 +868,7 @@ impl Drop for RemoteAudioTrack {
// the crash in the `livekit.multicast` thread. // the crash in the `livekit.multicast` thread.
// //
// unsafe { CFRelease(self.native_track.0) } // unsafe { CFRelease(self.native_track.0) }
let _ = self.native_track;
} }
} }