1
Fork 0

Remove needless borrows

This commit is contained in:
topecongiro 2017-10-26 16:54:41 +09:00
parent 314c97387d
commit 6c5ac5a9b3
5 changed files with 15 additions and 15 deletions

View file

@ -695,7 +695,7 @@ impl Rewrite for ast::Ty {
}
ast::TyKind::Tup(ref items) => rewrite_tuple(
context,
&::utils::ptr_vec_to_ref_vec(&items),
&::utils::ptr_vec_to_ref_vec(items),
self.span,
shape,
),