From 1a119bdfe97f63ea4604d4f9e38884292cdd6888 Mon Sep 17 00:00:00 2001 From: Felix Rabe Date: Wed, 1 Aug 2018 21:22:14 +0200 Subject: [PATCH] Use consistent order inside #[cfg(any(...))] (#619) --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index a8b0abb0..c7592a6a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -110,7 +110,7 @@ extern crate x11_dl; extern crate parking_lot; #[cfg(any(target_os = "linux", target_os = "dragonfly", target_os = "freebsd", target_os = "netbsd", target_os = "openbsd"))] extern crate percent_encoding; -#[cfg(any(target_os = "linux", target_os = "freebsd", target_os = "dragonfly", target_os = "netbsd", target_os = "openbsd"))] +#[cfg(any(target_os = "linux", target_os = "dragonfly", target_os = "freebsd", target_os = "netbsd", target_os = "openbsd"))] extern crate smithay_client_toolkit as sctk; pub(crate) use dpi::*; // TODO: Actually change the imports throughout the codebase.