mirror of
https://github.com/italicsjenga/winit-sonoma-fix.git
synced 2025-01-11 21:31:29 +11:00
Use consistent order inside #[cfg(any(...))] (#619)
This commit is contained in:
parent
21ff2e0ffc
commit
1a119bdfe9
|
@ -110,7 +110,7 @@ extern crate x11_dl;
|
||||||
extern crate parking_lot;
|
extern crate parking_lot;
|
||||||
#[cfg(any(target_os = "linux", target_os = "dragonfly", target_os = "freebsd", 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 percent_encoding;
|
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;
|
extern crate smithay_client_toolkit as sctk;
|
||||||
|
|
||||||
pub(crate) use dpi::*; // TODO: Actually change the imports throughout the codebase.
|
pub(crate) use dpi::*; // TODO: Actually change the imports throughout the codebase.
|
||||||
|
|
Loading…
Reference in a new issue