From f1d975b6f16baaf371e8f898d06bce96e211e198 Mon Sep 17 00:00:00 2001 From: gifnksm Date: Fri, 10 Oct 2014 22:56:15 +0900 Subject: [PATCH] Migrate to new `cfg` attribute syntax` --- src/complex.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/complex.rs b/src/complex.rs index a0068e2..6690b1d 100644 --- a/src/complex.rs +++ b/src/complex.rs @@ -219,7 +219,7 @@ mod test { } #[test] - #[ignore(cfg(target_arch = "x86"))] + #[cfg_attr(target_arch = "x86", ignore)] // FIXME #7158: (maybe?) currently failing on x86. fn test_norm() { fn test(c: Complex64, ns: f64) {