Remove TyParen from HIR

This commit is contained in:
Vadim Petrochenkov 2015-11-16 22:49:47 +03:00
parent 57c8a3e8b6
commit 4a850159cd
8 changed files with 4 additions and 13 deletions

View file

@ -1606,7 +1606,6 @@ impl Clean<Type> for hir::Ty {
}
}
TyBareFn(ref barefn) => BareFunction(box barefn.clean(cx)),
TyParen(ref ty) => ty.clean(cx),
TyPolyTraitRef(ref bounds) => {
PolyTraitRef(bounds.clean(cx))
},