Skip to content

Commit 30231d9

Browse files
Rollup merge of #118993 - jyn514:cfg-color, r=WaffleLapkin,Nilstrieb
use `if cfg!` instead of `#[cfg]` this pr is specifically for waffle because i love it <3 fixes #118756 (comment) r? `@WaffleLapkin`
2 parents c7b492e + 4845665 commit 30231d9

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

compiler/rustc_errors/src/emitter.rs

+1-4
Original file line numberDiff line numberDiff line change
@@ -2677,10 +2677,7 @@ fn from_stderr(color: ColorConfig) -> Destination {
26772677
/// On Windows, BRIGHT_BLUE is hard to read on black. Use cyan instead.
26782678
///
26792679
/// See #36178.
2680-
#[cfg(windows)]
2681-
const BRIGHT_BLUE: Color = Color::Cyan;
2682-
#[cfg(not(windows))]
2683-
const BRIGHT_BLUE: Color = Color::Blue;
2680+
const BRIGHT_BLUE: Color = if cfg!(windows) { Color::Cyan } else { Color::Blue };
26842681

26852682
impl Style {
26862683
fn color_spec(&self, lvl: Level) -> ColorSpec {

0 commit comments

Comments
 (0)