about summary refs log tree commit diff
path: root/src/libstd/rt
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2014-02-16 00:04:33 -0800
committerBrian Anderson <banderson@mozilla.com>2014-02-23 01:07:53 -0800
commit3e57808a01407be24a35f69148d20b76341b162f (patch)
tree5b5d316455f91c7044b7fbc33e3da4c214b8821c /src/libstd/rt
parent4d10bdc5b9fecee38abcad78a86e552a961b1a0a (diff)
downloadrust-3e57808a01407be24a35f69148d20b76341b162f.tar.gz
rust-3e57808a01407be24a35f69148d20b76341b162f.zip
std: Move raw to std::raw
Issue #1457
Diffstat (limited to 'src/libstd/rt')
-rw-r--r--src/libstd/rt/global_heap.rs2
-rw-r--r--src/libstd/rt/local_heap.rs2
-rw-r--r--src/libstd/rt/unwind.rs2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/libstd/rt/global_heap.rs b/src/libstd/rt/global_heap.rs
index 191d57a58fc..23b23cf8af0 100644
--- a/src/libstd/rt/global_heap.rs
+++ b/src/libstd/rt/global_heap.rs
@@ -11,7 +11,7 @@
 use libc::{c_void, size_t, free, malloc, realloc};
 use ptr::{RawPtr, mut_null};
 use intrinsics::abort;
-use unstable::raw;
+use raw;
 use mem::size_of;
 
 #[inline]
diff --git a/src/libstd/rt/local_heap.rs b/src/libstd/rt/local_heap.rs
index 8a42cd73565..4ff25a34210 100644
--- a/src/libstd/rt/local_heap.rs
+++ b/src/libstd/rt/local_heap.rs
@@ -20,7 +20,7 @@ use ptr::RawPtr;
 use rt::global_heap;
 use rt::local::Local;
 use rt::task::Task;
-use unstable::raw;
+use raw;
 use vec::ImmutableVector;
 use vec_ng::Vec;
 
diff --git a/src/libstd/rt/unwind.rs b/src/libstd/rt/unwind.rs
index 127859b4275..16d677b5ff2 100644
--- a/src/libstd/rt/unwind.rs
+++ b/src/libstd/rt/unwind.rs
@@ -177,7 +177,7 @@ impl Unwinder {
     }
 
     pub fn try(&mut self, f: ||) {
-        use unstable::raw::Closure;
+        use raw::Closure;
         use libc::{c_void};
 
         unsafe {