From b30e94b7bb7dda49e6a4615c15d08393c541b390 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Tue, 12 Dec 2023 13:11:39 -0800 Subject: [PATCH] Unbreak non-unix non-windows bootstrap --- src/bootstrap/src/bin/main.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/bootstrap/src/bin/main.rs b/src/bootstrap/src/bin/main.rs index 32f6a3f80d064..fd103876319ea 100644 --- a/src/bootstrap/src/bin/main.rs +++ b/src/bootstrap/src/bin/main.rs @@ -5,7 +5,6 @@ //! parent directory, and otherwise documentation can be found throughout the `build` //! directory in each respective module. -#[cfg(all(any(unix, windows), not(target_os = "solaris")))] use std::io::Write; #[cfg(all(any(unix, windows), not(target_os = "solaris")))] use std::process;