File tree 2 files changed +4
-4
lines changed 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -738,7 +738,7 @@ impl<'a> PulseDevListData<'a> {
738
738
}
739
739
}
740
740
741
- impl < ' a > Drop for PulseDevListData < ' a > {
741
+ impl Drop for PulseDevListData < ' _ > {
742
742
fn drop ( & mut self ) {
743
743
for elem in & mut self . devinfo {
744
744
let _ = unsafe { Box :: from_raw ( elem) } ;
Original file line number Diff line number Diff line change @@ -609,13 +609,13 @@ impl<'ctx> PulseStream<'ctx> {
609
609
}
610
610
}
611
611
612
- impl < ' ctx > Drop for PulseStream < ' ctx > {
612
+ impl Drop for PulseStream < ' _ > {
613
613
fn drop ( & mut self ) {
614
614
self . destroy ( ) ;
615
615
}
616
616
}
617
617
618
- impl < ' ctx > StreamOps for PulseStream < ' ctx > {
618
+ impl StreamOps for PulseStream < ' _ > {
619
619
fn start ( & mut self ) -> Result < ( ) > {
620
620
fn output_preroll ( _: & pulse:: MainloopApi , u : * mut c_void ) {
621
621
let stm = unsafe { & mut * ( u as * mut PulseStream ) } ;
@@ -868,7 +868,7 @@ impl<'ctx> StreamOps for PulseStream<'ctx> {
868
868
}
869
869
}
870
870
871
- impl < ' ctx > PulseStream < ' ctx > {
871
+ impl PulseStream < ' _ > {
872
872
fn stream_init (
873
873
context : & pulse:: Context ,
874
874
stream_params : & StreamParamsRef ,
You can’t perform that action at this time.
0 commit comments