@@ -3049,7 +3049,7 @@ struct CoreStreamData<'ctx> {
3049
3049
audio_dump_output : ffi:: cubeb_audio_dump_stream_t ,
3050
3050
}
3051
3051
3052
- impl < ' ctx > Default for CoreStreamData < ' ctx > {
3052
+ impl Default for CoreStreamData < ' _ > {
3053
3053
fn default ( ) -> Self {
3054
3054
Self {
3055
3055
stm_ptr : ptr:: null ( ) ,
@@ -4556,7 +4556,7 @@ impl<'ctx> CoreStreamData<'ctx> {
4556
4556
}
4557
4557
}
4558
4558
4559
- impl < ' ctx > Drop for CoreStreamData < ' ctx > {
4559
+ impl Drop for CoreStreamData < ' _ > {
4560
4560
fn drop ( & mut self ) {
4561
4561
self . debug_assert_is_on_stream_queue ( ) ;
4562
4562
self . stop_audiounits ( ) ;
@@ -4881,7 +4881,7 @@ impl<'ctx> AudioUnitStream<'ctx> {
4881
4881
}
4882
4882
}
4883
4883
4884
- impl < ' ctx > Drop for AudioUnitStream < ' ctx > {
4884
+ impl Drop for AudioUnitStream < ' _ > {
4885
4885
fn drop ( & mut self ) {
4886
4886
// Execute destroy in serial queue to avoid collision with reinit when un/plug devices
4887
4887
self . queue . clone ( ) . run_final ( || {
@@ -4891,7 +4891,7 @@ impl<'ctx> Drop for AudioUnitStream<'ctx> {
4891
4891
}
4892
4892
}
4893
4893
4894
- impl < ' ctx > StreamOps for AudioUnitStream < ' ctx > {
4894
+ impl StreamOps for AudioUnitStream < ' _ > {
4895
4895
fn start ( & mut self ) -> Result < ( ) > {
4896
4896
let was_stopped = self . stopped . load ( Ordering :: SeqCst ) ;
4897
4897
let was_draining = self . draining . load ( Ordering :: SeqCst ) ;
@@ -5175,8 +5175,8 @@ impl<'ctx> StreamOps for AudioUnitStream<'ctx> {
5175
5175
}
5176
5176
5177
5177
#[ allow( clippy:: non_send_fields_in_send_ty) ]
5178
- unsafe impl < ' ctx > Send for AudioUnitStream < ' ctx > { }
5179
- unsafe impl < ' ctx > Sync for AudioUnitStream < ' ctx > { }
5178
+ unsafe impl Send for AudioUnitStream < ' _ > { }
5179
+ unsafe impl Sync for AudioUnitStream < ' _ > { }
5180
5180
5181
5181
#[ cfg( test) ]
5182
5182
mod tests;
0 commit comments