From ae28ec5a9c09b0ea163ccdff26b5650d4d0ea3c0 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Tue, 18 Jan 2022 19:15:38 -0800 Subject: [PATCH] Inline Printer's scan_pop_bottom method --- compiler/rustc_ast_pretty/src/pp.rs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/compiler/rustc_ast_pretty/src/pp.rs b/compiler/rustc_ast_pretty/src/pp.rs index 4aeb4e4807b..e5542eda596 100644 --- a/compiler/rustc_ast_pretty/src/pp.rs +++ b/compiler/rustc_ast_pretty/src/pp.rs @@ -337,7 +337,7 @@ impl Printer { fn check_stream(&mut self) { if self.right_total - self.left_total > self.space { if Some(&self.left) == self.scan_stack.back() { - let scanned = self.scan_pop_bottom(); + let scanned = self.scan_stack.pop_back().unwrap(); self.buf[scanned].size = SIZE_INFINITY; } self.advance_left(); @@ -347,10 +347,6 @@ impl Printer { } } - fn scan_pop_bottom(&mut self) -> usize { - self.scan_stack.pop_back().unwrap() - } - fn advance_left(&mut self) { let mut left_size = self.buf[self.left].size;