about summary refs log tree commit diff
path: root/src/libstd/rc.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/libstd/rc.rs')
-rw-r--r--src/libstd/rc.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/rc.rs b/src/libstd/rc.rs
index e0fe75fd907..bc489bc399f 100644
--- a/src/libstd/rc.rs
+++ b/src/libstd/rc.rs
@@ -23,7 +23,7 @@ pointers, and then storing the parent pointers as `Weak` pointers.
 
 */
 
-use cast::transmute;
+use mem::transmute;
 use cell::Cell;
 use clone::Clone;
 use cmp::{Eq, Ord, TotalEq, TotalOrd, Ordering};