diff options
| author | Brian Anderson <banderson@mozilla.com> | 2014-02-15 23:49:08 -0800 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2014-02-23 01:07:53 -0800 |
| commit | 4d10bdc5b9fecee38abcad78a86e552a961b1a0a (patch) | |
| tree | 652d89a93931598a38fed6aa082b87acab38317e /src/libnative | |
| parent | edf351e9f7d17777b1385093bfa7b6654e662d44 (diff) | |
| download | rust-4d10bdc5b9fecee38abcad78a86e552a961b1a0a.tar.gz rust-4d10bdc5b9fecee38abcad78a86e552a961b1a0a.zip | |
std: Move intrinsics to std::intrinsics.
Issue #1457
Diffstat (limited to 'src/libnative')
| -rw-r--r-- | src/libnative/io/pipe_unix.rs | 2 | ||||
| -rw-r--r-- | src/libnative/io/pipe_win32.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/libnative/io/pipe_unix.rs b/src/libnative/io/pipe_unix.rs index 64acdbf7f48..784d8650689 100644 --- a/src/libnative/io/pipe_unix.rs +++ b/src/libnative/io/pipe_unix.rs @@ -15,7 +15,7 @@ use std::libc; use std::mem; use std::rt::rtio; use std::sync::arc::UnsafeArc; -use std::unstable::intrinsics; +use std::intrinsics; use super::{IoResult, retry}; use super::file::{keep_going, fd_t}; diff --git a/src/libnative/io/pipe_win32.rs b/src/libnative/io/pipe_win32.rs index fc4fc0fa789..e5e9592eb5a 100644 --- a/src/libnative/io/pipe_win32.rs +++ b/src/libnative/io/pipe_win32.rs @@ -90,7 +90,7 @@ use std::os::win32::as_utf16_p; use std::ptr; use std::rt::rtio; use std::sync::arc::UnsafeArc; -use std::unstable::intrinsics; +use std::intrinsics; use super::IoResult; |
