Skip to content

Commit 0f420fe

Browse files
committed
reduce line length to please tidy
1 parent 1318f70 commit 0f420fe

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/librustc/traits/error_reporting.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -699,7 +699,8 @@ impl<'a, 'gcx, 'tcx> InferCtxt<'a, 'gcx, 'tcx> {
699699
}
700700

701701
ty::Predicate::ObjectSafe(trait_def_id) => {
702-
let violations = self.tcx.global_tcx().object_safety_violations(trait_def_id);
702+
let violations = self.tcx.global_tcx()
703+
.object_safety_violations(trait_def_id);
703704
self.tcx.report_object_safety_error(span,
704705
trait_def_id,
705706
violations)

0 commit comments

Comments
 (0)