Use Option::unwrap_or instead of open-coding it

This commit is contained in:
LingMan 2020-10-13 01:05:35 +02:00
parent f3ab6f0584
commit 61e722f331
1 changed files with 3 additions and 6 deletions

View File

@ -491,12 +491,9 @@ impl Printer {
} }
fn get_top(&mut self) -> PrintStackElem { fn get_top(&mut self) -> PrintStackElem {
match self.print_stack.last() { *self.print_stack.last().unwrap_or({
Some(el) => *el, &PrintStackElem { offset: 0, pbreak: PrintStackBreak::Broken(Breaks::Inconsistent) }
None => { })
PrintStackElem { offset: 0, pbreak: PrintStackBreak::Broken(Breaks::Inconsistent) }
}
}
} }
fn print_begin(&mut self, b: BeginToken, l: isize) { fn print_begin(&mut self, b: BeginToken, l: isize) {