Skip to content

Commit ecba49c

Browse files
committed
Fixed formatting
1 parent f459b0f commit ecba49c

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

compiler/rustc_mir/src/util/pretty.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -413,9 +413,7 @@ fn use_verbose(ty: &&TyS<'tcx>) -> bool {
413413
ty::Int(_) | ty::Uint(_) | ty::Bool | ty::Char | ty::Float(_) => false,
414414
// Unit type
415415
ty::Tuple(g_args) if g_args.is_empty() => false,
416-
ty::Tuple(g_args) => g_args.iter().any(|g_arg| {
417-
use_verbose(&g_arg.expect_ty())
418-
}),
416+
ty::Tuple(g_args) => g_args.iter().any(|g_arg| use_verbose(&g_arg.expect_ty())),
419417
ty::Array(ty, _) => use_verbose(ty),
420418
ty::FnDef(..) => false,
421419
_ => true,

0 commit comments

Comments
 (0)