summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2012-09-18 11:18:56 -0700
committerBrian Anderson <banderson@mozilla.com>2012-09-18 11:19:17 -0700
commit5c18bf6cdd581108cb924f23ef5a23d9c17352e2 (patch)
treed47ece80002f32067bcf447ba902ab6c6fc719b8 /src/libstd
parentae86db0d93f98ae2dbe0e11a14cadd8ad6bd4620 (diff)
downloadrust-5c18bf6cdd581108cb924f23ef5a23d9c17352e2.tar.gz
rust-5c18bf6cdd581108cb924f23ef5a23d9c17352e2.zip
core: Rename at_vec::unsafe to raw
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/arena.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/arena.rs b/src/libstd/arena.rs
index 637c7451de0..73a3b2c7511 100644
--- a/src/libstd/arena.rs
+++ b/src/libstd/arena.rs
@@ -66,7 +66,7 @@ struct Arena {
 
 fn chunk(size: uint, is_pod: bool) -> Chunk {
     let mut v = @[];
-    unsafe { at_vec::unsafe::reserve(v, size); }
+    unsafe { at_vec::raw::reserve(v, size); }
     { data: v, mut fill: 0u, is_pod: is_pod }
 }