Rollup merge of #77673 - heckad:patch-2, r=lcnr
Remove unnecessary lamda on emitter map.
This commit is contained in:
commit
48c1ca15bb
1 changed files with 1 additions and 2 deletions
|
@ -155,8 +155,7 @@ pub fn run_compiler(
|
|||
),
|
||||
}
|
||||
}
|
||||
let diagnostic_output =
|
||||
emitter.map(|emitter| DiagnosticOutput::Raw(emitter)).unwrap_or(DiagnosticOutput::Default);
|
||||
let diagnostic_output = emitter.map_or(DiagnosticOutput::Default, DiagnosticOutput::Raw);
|
||||
let matches = match handle_options(&args) {
|
||||
Some(matches) => matches,
|
||||
None => return Ok(()),
|
||||
|
|
Loading…
Add table
Reference in a new issue