Fix minor formatting nitpicks
This commit is contained in:
parent
853e938096
commit
e3f170a341
1 changed files with 3 additions and 0 deletions
|
|
@ -2,12 +2,15 @@
|
||||||
#[cfg(target_os = "windows")]
|
#[cfg(target_os = "windows")]
|
||||||
#[path = "settings/windows.rs"]
|
#[path = "settings/windows.rs"]
|
||||||
mod platform;
|
mod platform;
|
||||||
|
|
||||||
#[cfg(target_os = "macos")]
|
#[cfg(target_os = "macos")]
|
||||||
#[path = "settings/macos.rs"]
|
#[path = "settings/macos.rs"]
|
||||||
mod platform;
|
mod platform;
|
||||||
|
|
||||||
#[cfg(not(any(target_os = "windows", target_os = "macos")))]
|
#[cfg(not(any(target_os = "windows", target_os = "macos")))]
|
||||||
#[path = "settings/other.rs"]
|
#[path = "settings/other.rs"]
|
||||||
mod platform;
|
mod platform;
|
||||||
|
|
||||||
pub use platform::PlatformSpecific;
|
pub use platform::PlatformSpecific;
|
||||||
|
|
||||||
use crate::conversion;
|
use crate::conversion;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue