Przeglądaj źródła

Fix missing import on Windows and macOS

timvisee 6 lat temu
rodzic
commit
dbbf8ac8af
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      src/util.rs

+ 1 - 1
src/util.rs

@@ -10,7 +10,7 @@ extern crate quale;
 use std::borrow::Borrow;
 use std::env::{self, current_exe, var_os};
 use std::ffi::OsStr;
-#[cfg(all(feature = "clipboard", target_os = "linux"))]
+#[cfg(feature = "clipboard")]
 use std::fmt;
 use std::fmt::{Debug, Display};
 #[cfg(all(feature = "clipboard", target_os = "linux"))]