diff options
| author | Daniel Micay <danielmicay@gmail.com> | 2014-03-20 03:35:51 -0400 |
|---|---|---|
| committer | Daniel Micay <danielmicay@gmail.com> | 2014-03-20 04:25:32 -0400 |
| commit | 14f656d1a79fb36ce5435976dd33f57dd09cb9ce (patch) | |
| tree | bfc7750a0918b56b8e6cd61624dd4917e5cd1075 /src/libsyntax/ast.rs | |
| parent | 7aded2adb6782d8188a631250ab8d72c82bd070c (diff) | |
rename std::vec_ng -> std::vec
Closes #12771
Diffstat (limited to 'src/libsyntax/ast.rs')
| -rw-r--r-- | src/libsyntax/ast.rs | 4 |
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>() {} |
