]> git.lizzy.rs Git - rust.git/commitdiff
Fix clippy
authorAaron Hill <aa1ronham@gmail.com>
Sun, 30 Aug 2020 23:17:17 +0000 (19:17 -0400)
committerAaron Hill <aa1ronham@gmail.com>
Sun, 30 Aug 2020 23:17:17 +0000 (19:17 -0400)
src/tools/clippy/clippy_lints/src/utils/ast_utils.rs

index 7b419431c0f51dafe566ad6a29dd46394213ac74..3c3f8b26e3ac1a4a4b83974e7d9b7d20fabce2c9 100644 (file)
@@ -191,7 +191,7 @@ pub fn eq_stmt(l: &Stmt, r: &Stmt) -> bool {
         (Item(l), Item(r)) => eq_item(l, r, eq_item_kind),
         (Expr(l), Expr(r)) | (Semi(l), Semi(r)) => eq_expr(l, r),
         (Empty, Empty) => true,
-        (MacCall(l), MacCall(r)) => l.1 == r.1 && eq_mac_call(&l.0, &r.0) && over(&l.2, &r.2, |l, r| eq_attr(l, r)),
+        (MacCall(l), MacCall(r)) => l.style == r.style && eq_mac_call(&l.mac, &r.mac) && over(&l.attrs, &r.attrs, |l, r| eq_attr(l, r)),
         _ => false,
     }
 }