@@ -123,7 +123,7 @@ impl<'a, 'tcx> SpanlessEq<'a, 'tcx> {
123
123
self . eq_expr ( lc, rc) && self . eq_expr ( & * * lt, & * * rt) && both ( le, re, |l, r| self . eq_expr ( l, r) )
124
124
} ,
125
125
( & ExprKind :: Lit ( ref l) , & ExprKind :: Lit ( ref r) ) => l. node == r. node ,
126
- ( & ExprKind :: Loop ( ref lb, ref ll, ref lls) , & ExprKind :: Loop ( ref rb, ref rl, ref rls) ) => {
126
+ ( & ExprKind :: Loop ( ref lb, ref ll, ref lls, _ ) , & ExprKind :: Loop ( ref rb, ref rl, ref rls, _ ) ) => {
127
127
lls == rls && self . eq_block ( lb, rb) && both ( ll, rl, |l, r| l. ident . name == r. ident . name )
128
128
} ,
129
129
( & ExprKind :: Match ( ref le, ref la, ref ls) , & ExprKind :: Match ( ref re, ref ra, ref rs) ) => {
@@ -560,7 +560,7 @@ impl<'a, 'tcx> SpanlessHash<'a, 'tcx> {
560
560
ExprKind :: Lit ( ref l) => {
561
561
l. node . hash ( & mut self . s ) ;
562
562
} ,
563
- ExprKind :: Loop ( ref b, ref i, _ ) => {
563
+ ExprKind :: Loop ( ref b, ref i, .. ) => {
564
564
self . hash_block ( b) ;
565
565
if let Some ( i) = * i {
566
566
self . hash_name ( i. ident . name ) ;
0 commit comments