Use more autoderef in libsyntax

This commit is contained in:
Jonas Schievink
2016-02-08 23:55:55 +01:00
parent db6e5d5ef9
commit c877d61b15
10 changed files with 171 additions and 171 deletions

View File

@@ -1040,7 +1040,7 @@ fn expand_item_multi_modifier(mut it: Annotatable,
allow_internal_unstable: true,
}
});
it = mac.expand(fld.cx, attr.span, &*attr.node.value, it);
it = mac.expand(fld.cx, attr.span, &attr.node.value, it);
fld.cx.bt_pop();
}
_ => unreachable!()