Skip to content

Commit 9c85ae8

Browse files
committed
Inline and remove HumanEmitter::stderr.
Because `HumanEmitter::new` is enough, in conjunction with the (renamed) `stderr_destination` function.
1 parent 0811e8f commit 9c85ae8

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/parse/session.rs

+5-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ use std::path::Path;
33
use std::sync::atomic::{AtomicBool, Ordering};
44

55
use rustc_data_structures::sync::{IntoDynSyncSend, Lrc};
6-
use rustc_errors::emitter::{DynEmitter, Emitter, HumanEmitter};
6+
use rustc_errors::emitter::{stderr_destination, DynEmitter, Emitter, HumanEmitter};
77
use rustc_errors::translation::Translate;
88
use rustc_errors::{
99
ColorConfig, Diag, DiagCtxt, DiagInner, ErrorGuaranteed, Level as DiagnosticLevel,
@@ -152,7 +152,10 @@ fn default_dcx(
152152
rustc_driver::DEFAULT_LOCALE_RESOURCES.to_vec(),
153153
false,
154154
);
155-
Box::new(HumanEmitter::stderr(emit_color, fallback_bundle).sm(Some(source_map.clone())))
155+
Box::new(
156+
HumanEmitter::new(stderr_destination(emit_color), fallback_bundle)
157+
.sm(Some(source_map.clone())),
158+
)
156159
};
157160
DiagCtxt::new(Box::new(SilentOnIgnoredFilesEmitter {
158161
has_non_ignorable_parser_errors: false,

0 commit comments

Comments
 (0)