about summary refs log tree commit diff
path: root/src/liblog
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/liblog
parent7aded2adb6782d8188a631250ab8d72c82bd070c (diff)
downloadrust-14f656d1a79fb36ce5435976dd33f57dd09cb9ce.tar.gz
rust-14f656d1a79fb36ce5435976dd33f57dd09cb9ce.zip
rename std::vec_ng -> std::vec
Closes #12771
Diffstat (limited to 'src/liblog')
-rw-r--r--src/liblog/directive.rs2
-rw-r--r--src/liblog/lib.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/liblog/directive.rs b/src/liblog/directive.rs
index d33ad0c8185..9d5e1a8f9ed 100644
--- a/src/liblog/directive.rs
+++ b/src/liblog/directive.rs
@@ -9,7 +9,7 @@
 // except according to those terms.
 
 use std::cmp;
-use std::vec_ng::Vec;
+use std::vec::Vec;
 
 #[deriving(Show, Clone)]
 pub struct LogDirective {
diff --git a/src/liblog/lib.rs b/src/liblog/lib.rs
index 7d635b80dad..fa8daf79812 100644
--- a/src/liblog/lib.rs
+++ b/src/liblog/lib.rs
@@ -126,7 +126,7 @@ use std::local_data;
 use std::os;
 use std::rt;
 use std::slice;
-use std::vec_ng::Vec;
+use std::vec::Vec;
 
 use sync::one::{Once, ONCE_INIT};