@@ -19,10 +19,10 @@ pub fn add_2(a: i32, b: i32) -> i32 {
1919 let b: Value < i32 > = Rc :: new ( RefCell :: new ( b) ) ;
2020 return ( ( * a. borrow ( ) ) + ( * b. borrow ( ) ) ) ;
2121}
22- pub fn apply_unary_3 ( x : i32 , args : & [ VaArg ] ) -> i32 {
22+ pub fn apply_unary_3 ( x : i32 , __args : & [ VaArg ] ) -> i32 {
2323 let x: Value < i32 > = Rc :: new ( RefCell :: new ( x) ) ;
2424 let ap: Value < VaList > = Rc :: new ( RefCell :: new ( VaList :: default ( ) ) ) ;
25- ( * ap. borrow_mut ( ) ) = VaList :: new ( args ) ;
25+ ( * ap. borrow_mut ( ) ) = VaList :: new ( __args ) ;
2626 let fn_: Value < FnPtr < fn ( i32 ) -> i32 > > = Rc :: new ( RefCell :: new (
2727 ( ( * ap. borrow_mut ( ) ) . arg :: < FnPtr < fn ( i32 ) -> i32 > > ( ) ) . clone ( ) ,
2828 ) ) ;
@@ -34,11 +34,11 @@ pub fn apply_unary_3(x: i32, args: &[VaArg]) -> i32 {
3434 ) ) ;
3535 return ( * result. borrow ( ) ) ;
3636}
37- pub fn apply_binary_4 ( a : i32 , b : i32 , args : & [ VaArg ] ) -> i32 {
37+ pub fn apply_binary_4 ( a : i32 , b : i32 , __args : & [ VaArg ] ) -> i32 {
3838 let a: Value < i32 > = Rc :: new ( RefCell :: new ( a) ) ;
3939 let b: Value < i32 > = Rc :: new ( RefCell :: new ( b) ) ;
4040 let ap: Value < VaList > = Rc :: new ( RefCell :: new ( VaList :: default ( ) ) ) ;
41- ( * ap. borrow_mut ( ) ) = VaList :: new ( args ) ;
41+ ( * ap. borrow_mut ( ) ) = VaList :: new ( __args ) ;
4242 let fn_: Value < FnPtr < fn ( i32 , i32 ) -> i32 > > = Rc :: new ( RefCell :: new (
4343 ( ( * ap. borrow_mut ( ) ) . arg :: < FnPtr < fn ( i32 , i32 ) -> i32 > > ( ) ) . clone ( ) ,
4444 ) ) ;
0 commit comments