Fix missing import on Windows and macOS

This commit is contained in:
timvisee 2019-03-25 21:01:05 +01:00
parent 7a5a2379e8
commit dbbf8ac8af
No known key found for this signature in database
GPG key ID: B8DB720BC383E172

View file

@ -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"))]