From 759921e2a0ec87211a0a54ab628f5ba5fbe6e578 Mon Sep 17 00:00:00 2001 From: chandde Date: Sat, 18 May 2019 00:49:54 -0700 Subject: [PATCH] fix line length --- src/libtest/lib.rs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/libtest/lib.rs b/src/libtest/lib.rs index b64973573c0..6c57581a6c2 100644 --- a/src/libtest/lib.rs +++ b/src/libtest/lib.rs @@ -37,9 +37,10 @@ use term; // FIXME(#54291): rustc and/or LLVM don't yet support building with panic-unwind -// on aarch64-pc-windows-msvc, or thumbv7a-pc-windows-msvc, so we don't link libtest against -// libunwind (for the time being), even though it means that -// libtest won't be fully functional on these platforms. +// on aarch64-pc-windows-msvc, or thumbv7a-pc-windows-msvc +// so we don't link libtest against libunwind (for the time being) +// even though it means that libtest won't be fully functional on +// these platforms. // // See also: https://github.com/rust-lang/rust/issues/54190#issuecomment-422904437 #[cfg(not(all(windows, any(target_arch = "aarch64", target_arch = "arm"))))] -- 2.44.0