Skip to content

Commit 4845665

Browse files
committed
use if cfg instead of #[cfg]
this pr is specifically for waffle because i love it <3
1 parent e6707df commit 4845665

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)