Skip to content

Commit

Permalink
Remove useless all in cfg
Browse files Browse the repository at this point in the history
  • Loading branch information
mati865 committed Oct 9, 2020
1 parent 0c97c24 commit 8818fda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/unwind/src/libunwind.rs
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ extern "C" {
}

cfg_if::cfg_if! {
if #[cfg(all(any(target_os = "ios", target_os = "netbsd", not(target_arch = "arm"))))] {
if #[cfg(any(target_os = "ios", target_os = "netbsd", not(target_arch = "arm")))] {
// Not ARM EHABI
#[repr(C)]
#[derive(Copy, Clone, PartialEq)]
Expand Down

0 comments on commit 8818fda

Please sign in to comment.