Skip to content

Commit 44e5a1a

Browse files
author
Jorge Aparicio
committed
fix cfg syntax
1 parent c52f9a0 commit 44e5a1a

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

tests/divti3.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@
77

88
// FIXME(#137)
99
// FIXME(#158)
10-
#[cfg(not(any(target_arch = "mips"), windows))]
10+
#[cfg(not(any(target_arch = "mips", windows)))]
1111
include!(concat!(env!("OUT_DIR"), "/divti3.rs"));

tests/modti3.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@
77

88
// FIXME(#137)
99
// FIXME(#158)
10-
#[cfg(not(any(target_arch = "mips"), windows))]
10+
#[cfg(not(any(target_arch = "mips", windows)))]
1111
include!(concat!(env!("OUT_DIR"), "/modti3.rs"));

tests/udivmodti4.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@
77

88
// FIXME(#137)
99
// FIXME(#158)
10-
#[cfg(not(any(target_arch = "mips"), windows))]
10+
#[cfg(not(any(target_arch = "mips", windows)))]
1111
include!(concat!(env!("OUT_DIR"), "/udivmodti4.rs"));

tests/udivti3.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@
77

88
// FIXME(#137)
99
// FIXME(#158)
10-
#[cfg(not(any(target_arch = "mips"), windows))]
10+
#[cfg(not(any(target_arch = "mips", windows)))]
1111
include!(concat!(env!("OUT_DIR"), "/udivti3.rs"));

tests/umodti3.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@
77

88
// FIXME(#137)
99
// FIXME(#158)
10-
#[cfg(not(any(target_arch = "mips"), windows))]
10+
#[cfg(not(any(target_arch = "mips", windows)))]
1111
include!(concat!(env!("OUT_DIR"), "/umodti3.rs"));

0 commit comments

Comments
 (0)