Skip to content

Commit 94414ac

Browse files
committed
Address excessive line length that was triggering warning during linting
1 parent ad73468 commit 94414ac

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/librustc/mir/mod.rs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,11 @@ impl<'tcx> Body<'tcx> {
217217

218218
#[inline]
219219
pub fn unwrap_predecessors(&self) -> &IndexVec<BasicBlock, Vec<BasicBlock>> {
220-
assert!(self.predecessors_cache.is_some(), "Expected predecessors_cache to be `Some(...)` for block at: {:?}", self.span.data());
220+
assert!(
221+
self.predecessors_cache.is_some(),
222+
"Expected predecessors_cache to be `Some(...)` for block at: {:?}",
223+
self.span.data()
224+
);
221225
self.predecessors_cache.as_ref().unwrap()
222226
}
223227

0 commit comments

Comments
 (0)