Fix tidy
This commit is contained in:
parent
48e5199de3
commit
e59756ee92
1 changed files with 3 additions and 1 deletions
|
|
@ -240,7 +240,9 @@ impl<'a> LoweringContext<'a> {
|
|||
}))
|
||||
}
|
||||
TyKind::Never => hir::TyNever,
|
||||
TyKind::Tup(ref tys) => hir::TyTup(tys.iter().map(|ty| self.lower_ty(ty)).collect()),
|
||||
TyKind::Tup(ref tys) => {
|
||||
hir::TyTup(tys.iter().map(|ty| self.lower_ty(ty)).collect())
|
||||
}
|
||||
TyKind::Paren(ref ty) => {
|
||||
return self.lower_ty(ty);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue