about summary refs log tree commit diff
path: root/src/libsyntax/ast.rs
diff options
context:
space:
mode:
authorDaniel Micay <danielmicay@gmail.com>2014-03-20 03:35:51 -0400
committerDaniel Micay <danielmicay@gmail.com>2014-03-20 04:25:32 -0400
commit14f656d1a79fb36ce5435976dd33f57dd09cb9ce (patch)
treebfc7750a0918b56b8e6cd61624dd4917e5cd1075 /src/libsyntax/ast.rs
parent7aded2adb6782d8188a631250ab8d72c82bd070c (diff)
rename std::vec_ng -> std::vec
Closes #12771
Diffstat (limited to 'src/libsyntax/ast.rs')
-rw-r--r--src/libsyntax/ast.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libsyntax/ast.rs b/src/libsyntax/ast.rs
index 77b0d4b5c9d..cbf5242271d 100644
--- a/src/libsyntax/ast.rs
+++ b/src/libsyntax/ast.rs
@@ -21,7 +21,7 @@ use std::fmt;
 use std::fmt::Show;
 use std::option::Option;
 use std::rc::Rc;
-use std::vec_ng::Vec;
+use std::vec::Vec;
 use serialize::{Encodable, Decodable, Encoder, Decoder};
 
 /// A pointer abstraction. FIXME(eddyb) #10676 use Rc<T> in the future.
@@ -1157,7 +1157,7 @@ mod test {
     use codemap::*;
     use super::*;
 
-    use std::vec_ng::Vec;
+    use std::vec::Vec;
 
     fn is_freeze<T: Freeze>() {}