about summary refs log tree commit diff
path: root/src/libcore/reflect.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/libcore/reflect.rs')
-rw-r--r--src/libcore/reflect.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/reflect.rs b/src/libcore/reflect.rs
index 505804b3da8..3fa37a2fb8e 100644
--- a/src/libcore/reflect.rs
+++ b/src/libcore/reflect.rs
@@ -246,7 +246,7 @@ impl<V: TyVisitor MovePtr> MovePtrAdaptor<V>: TyVisitor {
     }
 
     fn visit_unboxed_vec(mtbl: uint, inner: *TyDesc) -> bool {
-        self.align_to::<vec::raw::UnboxedVecRepr>();
+        self.align_to::<vec::UnboxedVecRepr>();
         if ! self.inner.visit_vec(mtbl, inner) { return false; }
         true
     }