Skip to content

Commit 974a57a

Browse files
committed
fmt
1 parent 9c9826a commit 974a57a

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

cocoa/src/quartzcore.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1572,7 +1572,6 @@ impl CATransform3D {
15721572
}
15731573
}
15741574

1575-
15761575
#[cfg_attr(feature = "link", link(name = "QuartzCore", kind = "framework"))]
15771576
extern "C" {
15781577
static kCARendererColorSpace: CFStringRef;

core-foundation-sys/src/lib.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,10 @@
2222
// We don't use `target_vendor` since that is going to be deprecated:
2323
// https://github.com/rust-lang/lang-team/issues/102
2424
#[cfg_attr(
25-
all(any(target_os = "macos", target_os = "ios", target_os = "tvos"), feature = "link"),
25+
all(
26+
any(target_os = "macos", target_os = "ios", target_os = "tvos"),
27+
feature = "link"
28+
),
2629
link(name = "CoreFoundation", kind = "framework")
2730
)]
2831
extern "C" {}

0 commit comments

Comments
 (0)