1
Fork 0

Auto merge of #36393 - petrochenkov:ancient, r=eddyb

Remove some obsolete code from the compiler
This commit is contained in:
bors 2016-09-15 13:34:11 -07:00 committed by GitHub
commit 1265cbf4e0
10 changed files with 40 additions and 196 deletions

View file

@ -2546,7 +2546,7 @@ fn render_struct(w: &mut fmt::Formatter, it: &clean::Item,
}
write!(w, "}}")?;
}
doctree::Tuple | doctree::Newtype => {
doctree::Tuple => {
write!(w, "(")?;
for (i, field) in fields.iter().enumerate() {
if i > 0 {