File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -767,6 +767,7 @@ macro_rules! impl_unzip_bind_for_tuples {
767
767
768
768
fn unzip( self ) -> Self :: Target {
769
769
#[ allow( unused_unsafe) ] // for `Bind<'_, _, ()>`
770
+ #[ allow( clippy:: unused_unit) ] // for `Bind<'_, _, ()>`
770
771
unsafe {
771
772
let divide = DivideBind :: new( self ) ;
772
773
let hunk = divide. original_hunk( ) ;
@@ -1746,6 +1747,7 @@ macro_rules! impl_binder_on_tuples {
1746
1747
let _ = ctx;
1747
1748
}
1748
1749
1750
+ #[ allow( clippy:: unused_unit) ]
1749
1751
fn into_runtime_binder( self ) -> Self :: Runtime {
1750
1752
( $( self . $I. into_runtime_binder( ) , ) * )
1751
1753
}
@@ -1759,6 +1761,7 @@ macro_rules! impl_binder_on_tuples {
1759
1761
1760
1762
#[ allow( unused_unsafe) ]
1761
1763
#[ allow( unused_variables) ]
1764
+ #[ allow( clippy:: unused_unit) ]
1762
1765
#[ inline]
1763
1766
unsafe fn materialize<' call>( self ) -> Self :: Target <' call> {
1764
1767
unsafe {
You can’t perform that action at this time.
0 commit comments