@@ -515,7 +515,7 @@ pub trait PrintState<'a>: std::ops::Deref<Target = pp::Printer> + std::ops::Dere
515
515
ast:: MetaItemKind :: List ( ref items) => {
516
516
self . print_path ( & item. path , false , 0 ) ;
517
517
self . popen ( ) ;
518
- self . commasep ( Consistent , & items, |s, i| s. print_meta_list_item ( i) ) ;
518
+ self . commasep ( Consistent , items, |s, i| s. print_meta_list_item ( i) ) ;
519
519
self . pclose ( ) ;
520
520
}
521
521
}
@@ -532,7 +532,7 @@ pub trait PrintState<'a>: std::ops::Deref<Target = pp::Printer> + std::ops::Dere
532
532
fn print_tt ( & mut self , tt : & TokenTree , convert_dollar_crate : bool ) {
533
533
match tt {
534
534
TokenTree :: Token ( token, _) => {
535
- let token_str = self . token_to_string_ext ( & token, convert_dollar_crate) ;
535
+ let token_str = self . token_to_string_ext ( token, convert_dollar_crate) ;
536
536
self . word ( token_str) ;
537
537
if let token:: DocComment ( ..) = token. kind {
538
538
self . hardbreak ( )
@@ -994,7 +994,7 @@ impl<'a> State<'a> {
994
994
ast:: AssocConstraintKind :: Bound { bounds } => {
995
995
if !bounds. is_empty ( ) {
996
996
self . word_nbsp ( ":" ) ;
997
- self . print_type_bounds ( & bounds) ;
997
+ self . print_type_bounds ( bounds) ;
998
998
}
999
999
}
1000
1000
}
@@ -1031,7 +1031,7 @@ impl<'a> State<'a> {
1031
1031
}
1032
1032
ast:: TyKind :: Tup ( ref elts) => {
1033
1033
self . popen ( ) ;
1034
- self . commasep ( Inconsistent , & elts, |s, ty| s. print_type ( ty) ) ;
1034
+ self . commasep ( Inconsistent , elts, |s, ty| s. print_type ( ty) ) ;
1035
1035
if elts. len ( ) == 1 {
1036
1036
self . word ( "," ) ;
1037
1037
}
@@ -1250,7 +1250,7 @@ impl<'a> State<'a> {
1250
1250
1251
1251
self . popen ( ) ;
1252
1252
self . commasep ( Consistent , & args, |s, arg| match arg {
1253
- AsmArg :: Template ( template) => s. print_string ( & template, ast:: StrStyle :: Cooked ) ,
1253
+ AsmArg :: Template ( template) => s. print_string ( template, ast:: StrStyle :: Cooked ) ,
1254
1254
AsmArg :: Operand ( op) => {
1255
1255
let print_reg_or_class = |s : & mut Self , r : & InlineAsmRegOrRegClass | match r {
1256
1256
InlineAsmRegOrRegClass :: Reg ( r) => s. print_symbol ( * r, ast:: StrStyle :: Cooked ) ,
@@ -1420,11 +1420,11 @@ impl<'a> State<'a> {
1420
1420
self . print_path ( path, true , 0 ) ;
1421
1421
}
1422
1422
self . popen ( ) ;
1423
- self . commasep ( Inconsistent , & elts, |s, p| s. print_pat ( p) ) ;
1423
+ self . commasep ( Inconsistent , elts, |s, p| s. print_pat ( p) ) ;
1424
1424
self . pclose ( ) ;
1425
1425
}
1426
1426
PatKind :: Or ( ref pats) => {
1427
- self . strsep ( "|" , true , Inconsistent , & pats, |s, p| s. print_pat ( p) ) ;
1427
+ self . strsep ( "|" , true , Inconsistent , pats, |s, p| s. print_pat ( p) ) ;
1428
1428
}
1429
1429
PatKind :: Path ( None , ref path) => {
1430
1430
self . print_path ( path, true , 0 ) ;
@@ -1446,7 +1446,7 @@ impl<'a> State<'a> {
1446
1446
}
1447
1447
self . commasep_cmnt (
1448
1448
Consistent ,
1449
- & fields,
1449
+ fields,
1450
1450
|s, f| {
1451
1451
s. cbox ( INDENT_UNIT ) ;
1452
1452
if !f. is_shorthand {
@@ -1471,7 +1471,7 @@ impl<'a> State<'a> {
1471
1471
}
1472
1472
PatKind :: Tuple ( ref elts) => {
1473
1473
self . popen ( ) ;
1474
- self . commasep ( Inconsistent , & elts, |s, p| s. print_pat ( p) ) ;
1474
+ self . commasep ( Inconsistent , elts, |s, p| s. print_pat ( p) ) ;
1475
1475
if elts. len ( ) == 1 {
1476
1476
self . word ( "," ) ;
1477
1477
}
@@ -1494,7 +1494,7 @@ impl<'a> State<'a> {
1494
1494
self . print_pat ( inner) ;
1495
1495
}
1496
1496
}
1497
- PatKind :: Lit ( ref e) => self . print_expr ( & * * e) ,
1497
+ PatKind :: Lit ( ref e) => self . print_expr ( e) ,
1498
1498
PatKind :: Range ( ref begin, ref end, Spanned { node : ref end_kind, .. } ) => {
1499
1499
if let Some ( e) = begin {
1500
1500
self . print_expr ( e) ;
@@ -1510,7 +1510,7 @@ impl<'a> State<'a> {
1510
1510
}
1511
1511
PatKind :: Slice ( ref elts) => {
1512
1512
self . word ( "[" ) ;
1513
- self . commasep ( Inconsistent , & elts, |s, p| s. print_pat ( p) ) ;
1513
+ self . commasep ( Inconsistent , elts, |s, p| s. print_pat ( p) ) ;
1514
1514
self . word ( "]" ) ;
1515
1515
}
1516
1516
PatKind :: Rest => self . word ( ".." ) ,
@@ -1596,7 +1596,7 @@ impl<'a> State<'a> {
1596
1596
1597
1597
self . word ( "<" ) ;
1598
1598
1599
- self . commasep ( Inconsistent , & generic_params, |s, param| {
1599
+ self . commasep ( Inconsistent , generic_params, |s, param| {
1600
1600
s. print_outer_attributes_inline ( & param. attrs ) ;
1601
1601
1602
1602
match param. kind {
0 commit comments