Skip to content
This repository was archived by the owner on Jun 8, 2021. It is now read-only.

Commit e4206b6

Browse files
committed
Fix feature flag confusion in source.rs for Windows build
1 parent 57d26c4 commit e4206b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/source.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
use std::cell::RefCell;
66
use std::mem::transmute;
7-
#[cfg(any(unix, feature = "dox"))]
7+
#[cfg(unix)]
88
use std::os::unix::io::RawFd;
99
#[cfg(all(not(unix), feature = "dox"))]
1010
use libc::c_int as RawFd;

0 commit comments

Comments
 (0)