File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -2458,12 +2458,12 @@ mod utils {
2458
2458
use aster;
2459
2459
use ir:: context:: { BindgenContext , ItemId } ;
2460
2460
use ir:: item:: { Item , ItemCanonicalPath } ;
2461
+ use ir:: function:: FunctionSig ;
2461
2462
use ir:: ty:: TypeKind ;
2462
2463
use std:: mem;
2463
2464
use syntax:: ast;
2464
2465
use syntax:: ptr:: P ;
2465
2466
2466
-
2467
2467
pub fn prepend_objc_header ( ctx : & BindgenContext ,
2468
2468
result : & mut Vec < P < ast:: Item > > ) {
2469
2469
let use_objc = if ctx. options ( ) . objc_extern_crate {
@@ -2745,7 +2745,7 @@ mod utils {
2745
2745
}
2746
2746
2747
2747
pub fn fnsig_return_ty ( ctx : & BindgenContext ,
2748
- sig : & super :: FunctionSig )
2748
+ sig : & FunctionSig )
2749
2749
-> ast:: FunctionRetTy {
2750
2750
let return_item = ctx. resolve_item ( sig. return_type ( ) ) ;
2751
2751
if let TypeKind :: Void = * return_item. kind ( ) . expect_type ( ) . kind ( ) {
@@ -2756,7 +2756,7 @@ mod utils {
2756
2756
}
2757
2757
2758
2758
pub fn fnsig_arguments ( ctx : & BindgenContext ,
2759
- sig : & super :: FunctionSig )
2759
+ sig : & FunctionSig )
2760
2760
-> Vec < ast:: Arg > {
2761
2761
use super :: ToPtr ;
2762
2762
let mut unnamed_arguments = 0 ;
You can’t perform that action at this time.
0 commit comments