Commit suggestion

Co-authored-by: Jonas Schievink <jonasschievink@gmail.com>
This commit is contained in:
Kazantcev Andrey 2020-10-08 13:58:51 +03:00 committed by GitHub
parent 141544a903
commit dd60ab3e2d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -155,7 +155,7 @@ pub fn run_compiler(
),
}
}
let diagnostic_output = emitter.map(DiagnosticOutput::Raw).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(()),