1
Fork 0

rename std::vec_ng -> std::vec

Closes #12771
This commit is contained in:
Daniel Micay 2014-03-20 03:35:51 -04:00
parent 7aded2adb6
commit 14f656d1a7
174 changed files with 290 additions and 287 deletions

View file

@ -11,8 +11,8 @@
use driver::session::Session;
use std::vec_ng::Vec;
use std::vec_ng;
use std::vec::Vec;
use std::vec;
use syntax::ast;
use syntax::attr;
use syntax::codemap::DUMMY_SP;
@ -182,7 +182,7 @@ impl<'a> fold::Folder for PreludeInjector<'a> {
span: DUMMY_SP,
};
let vis = vec_ng::append(vec!(vi2), module.view_items.as_slice());
let vis = vec::append(vec!(vi2), module.view_items.as_slice());
// FIXME #2543: Bad copy.
let new_module = ast::Mod {