Skip to content

Commit

Permalink
fmt: make rustfmt happy
Browse files Browse the repository at this point in the history
  • Loading branch information
Aloxaf committed Apr 26, 2021
1 parent 49d7bb7 commit 24d4978
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/bin/silicon/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,11 @@ pub fn dump_image_to_clipboard(image: &DynamicImage) -> Result<(), Error> {
Ok(())
}

#[cfg(not(any(target_os = "linux", all(target_os = "macos", not(target_arch = "aarch64")), target_os = "windows")))]
#[cfg(not(any(
target_os = "linux",
all(target_os = "macos", not(target_arch = "aarch64")),
target_os = "windows"
)))]
pub fn dump_image_to_clipboard(_image: &DynamicImage) -> Result<(), Error> {
Err(format_err!(
"This feature hasn't been implemented for your system"
Expand Down

0 comments on commit 24d4978

Please sign in to comment.