diff options
| author | Paul Daniel Faria <Nashenas88@users.noreply.github.com> | 2019-10-04 01:01:01 -0400 |
|---|---|---|
| committer | Paul Daniel Faria <Nashenas88@users.noreply.github.com> | 2019-12-02 08:30:30 -0500 |
| commit | 94414ac7bba05377468ef0b7c775df6e87535ddd (patch) | |
| tree | 1beb08a6a6863b98e8f900228b674665d82e4c14 | |
| parent | ad734680af76d92f8e490141d72bf2a629e2d5f8 (diff) | |
| download | rust-94414ac7bba05377468ef0b7c775df6e87535ddd.tar.gz rust-94414ac7bba05377468ef0b7c775df6e87535ddd.zip | |
Address excessive line length that was triggering warning during linting
| -rw-r--r-- | src/librustc/mir/mod.rs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/librustc/mir/mod.rs b/src/librustc/mir/mod.rs index a91017e880a..940f35cf498 100644 --- a/src/librustc/mir/mod.rs +++ b/src/librustc/mir/mod.rs @@ -217,7 +217,11 @@ impl<'tcx> Body<'tcx> { #[inline] pub fn unwrap_predecessors(&self) -> &IndexVec<BasicBlock, Vec<BasicBlock>> { - assert!(self.predecessors_cache.is_some(), "Expected predecessors_cache to be `Some(...)` for block at: {:?}", self.span.data()); + assert!( + self.predecessors_cache.is_some(), + "Expected predecessors_cache to be `Some(...)` for block at: {:?}", + self.span.data() + ); self.predecessors_cache.as_ref().unwrap() } |
