Skip to content

Commit 73b2e1b

Browse files
committed
---
yaml --- r: 135935 b: refs/heads/try c: b4909f6 h: refs/heads/master i: 135933: 3a676ac 135931: ddf7cd6 135927: 46811e5 135919: e86aafb 135903: 5b9cc9e 135871: 8b09624 135807: f46174a 135679: 6eeed66 v: v3
1 parent ffb8022 commit 73b2e1b

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
refs/heads/master: 8794107f74682607f368776cc8b78820629778e6
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: ae81c89f34f1ac2cdb596cf216612e94822a8466
5-
refs/heads/try: d9eac5d99c105d45d9c503abad9020bb3d8e0bad
5+
refs/heads/try: b4909f6eb713b51c73010e888053a1aed7b8fb64
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c

branches/try/src/librustdoc/flock.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,7 @@ mod imp {
8484
pub static F_SETLKW: libc::c_int = 9;
8585
}
8686

87-
#[cfg(target_os = "macos")]
88-
#[cfg(target_os = "ios")]
87+
#[cfg(any(target_os = "macos", target_os = "ios"))]
8988
mod os {
9089
use libc;
9190

branches/try/src/librustdoc/plugins.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ fn libname(mut n: String) -> String {
8585
n
8686
}
8787

88-
#[cfg(not(target_os="windows"), not(target_os="macos"))]
88+
#[cfg(all(not(target_os="windows"), not(target_os="macos")))]
8989
fn libname(n: String) -> String {
9090
let mut i = String::from_str("lib");
9191
i.push_str(n.as_slice());

0 commit comments

Comments
 (0)