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

@ -16,7 +16,7 @@ use metadata::filesearch;
use lib::llvm::{ArchiveRef, llvm};
use std::cast;
use std::vec_ng::Vec;
use std::vec::Vec;
use std::io;
use std::io::{fs, TempDir};
use std::libc;

View file

@ -33,7 +33,7 @@ use std::ptr;
use std::str;
use std::io;
use std::io::{fs, TempDir, Process};
use std::vec_ng::Vec;
use std::vec::Vec;
use flate;
use serialize::hex::ToHex;
use syntax::abi;
@ -105,7 +105,7 @@ pub mod write {
use std::io::Process;
use std::libc::{c_uint, c_int};
use std::str;
use std::vec_ng::Vec;
use std::vec::Vec;
// On android, we by default compile for armv7 processors. This enables
// things like double word CAS instructions (rather than emulating them)

View file

@ -11,7 +11,7 @@
use back::target_strs;
use driver::session::sess_os_to_meta_os;
use metadata::loader::meta_section_name;
use std::vec_ng::Vec;
use std::vec::Vec;
use syntax::abi;
pub fn get_target_strs(target_triple: ~str, target_os: abi::Os) -> target_strs::t {

View file

@ -15,7 +15,7 @@ use metadata::filesearch;
use collections::HashSet;
use std::{os, slice};
use std::vec_ng::Vec;
use std::vec::Vec;
use syntax::abi;
fn not_win32(os: abi::Os) -> bool {

View file

@ -10,7 +10,7 @@
#[allow(non_camel_case_types)];
use std::vec_ng::Vec;
use std::vec::Vec;
pub struct t {
module_asm: ~str,