mirror of
https://github.com/rust-lang/rust.git
synced 2025-01-24 21:53:56 +00:00
Rollup merge of #77673 - heckad:patch-2, r=lcnr
Remove unnecessary lamda on emitter map.
This commit is contained in:
commit
48c1ca15bb
@ -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…
Reference in New Issue
Block a user