File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -79,13 +79,13 @@ pub fn quote_args<DB: DatabaseExt>(
79
79
use :: sqlx:: ty_match:: { WrapSameExt as _, MatchBorrowExt as _} ;
80
80
81
81
// evaluate the expression only once in case it contains moves
82
- let _expr = :: sqlx:: ty_match:: dupe_value( #name) ;
82
+ let expr = :: sqlx:: ty_match:: dupe_value( #name) ;
83
83
84
- // if `_expr ` is `Option<T>`, get `Option<$ty>`, otherwise `$ty`
85
- let ty_check = :: sqlx:: ty_match:: WrapSame :: <#param_ty, _>:: new( & _expr ) . wrap_same( ) ;
84
+ // if `expr ` is `Option<T>`, get `Option<$ty>`, otherwise `$ty`
85
+ let ty_check = :: sqlx:: ty_match:: WrapSame :: <#param_ty, _>:: new( & expr ) . wrap_same( ) ;
86
86
87
- // if `_expr ` is `&str`, convert `String` to `&str`
88
- let ( mut _ty_check, match_borrow) = :: sqlx:: ty_match:: MatchBorrow :: new( ty_check, & _expr ) ;
87
+ // if `expr ` is `&str`, convert `String` to `&str`
88
+ let ( mut _ty_check, match_borrow) = :: sqlx:: ty_match:: MatchBorrow :: new( ty_check, & expr ) ;
89
89
90
90
_ty_check = match_borrow. match_borrow( ) ;
91
91
You can’t perform that action at this time.
0 commit comments