Selaa lähdekoodia

fix(netbsd): enable the rule only for NetBSD.

Santhosh Raju 1 vuosi sitten
vanhempi
sitoutus
17733e9aee
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      src/output/mod.rs

+ 1 - 1
src/output/mod.rs

@@ -1,4 +1,4 @@
-#[allow(unused_imports)]
+#[cfg_attr(target_os = "netbsd", allow(unused_imports))]
 pub use self::cell::{DisplayWidth, TextCell, TextCellContents};
 pub use self::escape::escape;