@@ -544,23 +544,12 @@ impl Builder {
544
544
if is_destroy || trampoline. scope . is_async ( ) {
545
545
format ! ( "Box_::from_raw({func} as *mut _)" )
546
546
} else if trampoline. scope . is_call ( ) {
547
- format ! (
548
- "{} as *const _ as usize as *mut {}" ,
549
- func, trampoline. bound_name
550
- )
547
+ format ! ( "{} as *mut {}" , func, trampoline. bound_name)
551
548
} else {
552
549
format ! ( "&*({func} as *mut _)" )
553
550
} ,
554
551
) ) ,
555
- type_ : Some ( Box :: new ( Chunk :: Custom (
556
- if is_destroy || trampoline. scope . is_async ( ) {
557
- format ! ( "Box_<{}>" , trampoline. bound_name)
558
- } else if trampoline. scope . is_call ( ) {
559
- format ! ( "*mut {}" , trampoline. bound_name)
560
- } else {
561
- format ! ( "&{}" , trampoline. bound_name)
562
- } ,
563
- ) ) ) ,
552
+ type_ : None ,
564
553
} ) ;
565
554
if !is_destroy && * trampoline. nullable {
566
555
if trampoline. scope . is_async ( ) {
@@ -1016,7 +1005,7 @@ impl Builder {
1016
1005
Chunk :: FfiCallParameter {
1017
1006
transformation_type : TransformationType :: ToGlibDirect {
1018
1007
name : if all_call {
1019
- format ! ( "super_callback{pos} as *const _ as usize as *mut _" )
1008
+ format ! ( "super_callback{pos} as *const _ as *mut _" )
1020
1009
} else {
1021
1010
format ! ( "Box_::into_raw(super_callback{pos}) as *mut _" )
1022
1011
} ,
0 commit comments