diff --git a/parser/src/cfg/mod.rs b/parser/src/cfg/mod.rs index e25c2013a..36d8208d4 100755 --- a/parser/src/cfg/mod.rs +++ b/parser/src/cfg/mod.rs @@ -2263,13 +2263,13 @@ fn parse_push_message(ac_params: &[SExpr], s: &ParserState) -> Result<&'static K pub mod windows; #[cfg(any(target_os = "windows", target_os = "unknown"))] pub use windows::*; -#[cfg(any(target_os = "linux"))] +#[cfg(target_os = "linux")] pub mod linux; -#[cfg(any(target_os = "linux"))] +#[cfg(target_os = "linux")] pub use linux::*; -#[cfg(any(target_os = "macos"))] +#[cfg(target_os = "macos")] pub mod macos; -#[cfg(any(target_os = "macos"))] +#[cfg(target_os = "macos")] pub use macos::*; fn to_simple_expr(params: &[SExpr], s: &ParserState) -> Vec {