1
Fork 0

Auto merge of #43710 - zackmdavis:field_init_shorthand_power_slam, r=Mark-Simulacrum

use field init shorthand EVERYWHERE

Like #43008 (f668999), but [(lacking reasons to be more timid)](https://github.com/rust-lang/rust/pull/43008#issuecomment-312463564) _much more aggressive_.

r? @Mark-Simulacrum
This commit is contained in:
bors 2017-08-16 04:00:24 +00:00
commit 6f4ab9458a
281 changed files with 1376 additions and 1376 deletions

View file

@ -1728,9 +1728,9 @@ impl<T> IntoIterator for Vec<T> {
mem::forget(self);
IntoIter {
buf: Shared::new_unchecked(begin),
cap: cap,
cap,
ptr: begin,
end: end,
end,
}
}
}