Skip to content

Commit

Permalink
fix two arm-ios conditional compilation flags
Browse files Browse the repository at this point in the history
I agree to license my contributions to each file under the terms given
at the top of each file I changed.
  • Loading branch information
kali committed Jan 25, 2017
1 parent 534c695 commit 011a763
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion src/init.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

#[inline(always)]
pub fn init_once() {
#[cfg(not(all(target_arch = "aarch64", target_os = "ios")))]
#[cfg(not(target_os = "ios"))]
{
use std;
extern { fn GFp_cpuid_setup(); }
Expand Down
1 change: 0 additions & 1 deletion src/rand.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
//! documentation for more details.

#[cfg(any(target_os = "linux",
target_os = "ios",
windows,
test))]
use c;
Expand Down

0 comments on commit 011a763

Please sign in to comment.