Skip to content

Commit

Permalink
replace () with PathBuf::new()
Browse files Browse the repository at this point in the history
  • Loading branch information
akumarujon committed Feb 24, 2024
1 parent e1db386 commit 5f8c684
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,17 @@ impl Config {

#[cfg(target_os = "macos")]
fn get_target() -> PathBuf {

PathBuf::new()
}

#[cfg(target_os = "linux")]
fn get_target() -> PathBuf {

PathBuf::new()
}

#[cfg(target_os = "windows")]
fn get_target() -> PathBuf {
PathBuf::new()

}

Expand Down

0 comments on commit 5f8c684

Please sign in to comment.