Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
eugenesvk committed Jun 9, 2024
1 parent c3b7e3d commit 4472256
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions parser/src/cfg/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2311,13 +2311,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<SimpleSExpr> {
Expand Down

0 comments on commit 4472256

Please sign in to comment.