diff options
| author | Vadim Chugunov <vadimcn@gmail.com> | 2014-08-10 21:26:45 -0700 |
|---|---|---|
| committer | Vadim Chugunov <vadimcn@gmail.com> | 2014-08-12 00:13:43 -0700 |
| commit | 3dfd12967aed35b7788f7d3c7460b76b76e70b60 (patch) | |
| tree | 6c28e2873f65ce3bc29edacd4a7e3f2bf4eb5725 /src/libnative | |
| parent | 98332b1a06193c4f83fc2613f72273b50b77f2b3 (diff) | |
| download | rust-3dfd12967aed35b7788f7d3c7460b76b76e70b60.tar.gz rust-3dfd12967aed35b7788f7d3c7460b76b76e70b60.zip | |
Replace #[cfg(target_os = "win32")] with #[cfg(target_os = "windows")]
Diffstat (limited to 'src/libnative')
| -rw-r--r-- | src/libnative/io/mod.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libnative/io/mod.rs b/src/libnative/io/mod.rs index db5421481ee..afd818bd7d7 100644 --- a/src/libnative/io/mod.rs +++ b/src/libnative/io/mod.rs @@ -58,7 +58,8 @@ pub mod file; #[path = "timer_unix.rs"] pub mod timer; -#[cfg(target_os = "win32")] +#[cfg(target_os = "windows")] +#[cfg(stage0, target_os = "win32")] // NOTE: Remove after snapshot #[path = "timer_win32.rs"] pub mod timer; |
