Skip to content

Commit 6dbd706

Browse files
committed
put option_try macro def under #[cfg(unix)]
1 parent 25b7f10 commit 6dbd706

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/librustc/util/common.rs

+1
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,7 @@ pub fn record_time<T, F>(accu: &Cell<Duration>, f: F) -> T where
116116
}
117117

118118
// Like std::macros::try!, but for Option<>.
119+
#[cfg(unix)]
119120
macro_rules! option_try(
120121
($e:expr) => (match $e { Some(e) => e, None => return None })
121122
);

0 commit comments

Comments
 (0)