Rerun rustfmt

This commit is contained in:
Manish Goregaokar
2017-01-04 15:53:16 -08:00
parent 2f941131bf
commit ab42f02003
8 changed files with 55 additions and 26 deletions

View File

@@ -917,6 +917,6 @@ pub fn is_self_ty(slf: &Ty) -> bool {
false
}
pub fn iter_input_pats<'tcx>(decl: &FnDecl, body: &'tcx Body) -> impl Iterator<Item=&'tcx Arg> {
pub fn iter_input_pats<'tcx>(decl: &FnDecl, body: &'tcx Body) -> impl Iterator<Item = &'tcx Arg> {
(0..decl.inputs.len()).map(move |i| &body.arguments[i])
}
}