diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2014-03-19 23:23:00 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2014-03-20 09:30:14 -0700 |
| commit | da3625161d8f8bcb2f43d703eec8d002d0bb9c87 (patch) | |
| tree | 4d1a336aa48054131a90cda34ecd71ff309a3616 /src/libsyntax/print | |
| parent | 7a5a8c3c0776636aef8e1d98dfed5e96573ea544 (diff) | |
| download | rust-da3625161d8f8bcb2f43d703eec8d002d0bb9c87.tar.gz rust-da3625161d8f8bcb2f43d703eec8d002d0bb9c87.zip | |
Removing imports of std::vec_ng::Vec
It's now in the prelude.
Diffstat (limited to 'src/libsyntax/print')
| -rw-r--r-- | src/libsyntax/print/pp.rs | 1 | ||||
| -rw-r--r-- | src/libsyntax/print/pprust.rs | 3 |
2 files changed, 0 insertions, 4 deletions
diff --git a/src/libsyntax/print/pp.rs b/src/libsyntax/print/pp.rs index c588e407e30..4996c1e96a8 100644 --- a/src/libsyntax/print/pp.rs +++ b/src/libsyntax/print/pp.rs @@ -62,7 +62,6 @@ */ use std::io; -use std::vec::Vec; #[deriving(Clone, Eq)] pub enum Breaks { diff --git a/src/libsyntax/print/pprust.rs b/src/libsyntax/print/pprust.rs index 5c23dd163d1..1b8f48861aa 100644 --- a/src/libsyntax/print/pprust.rs +++ b/src/libsyntax/print/pprust.rs @@ -32,7 +32,6 @@ use std::char; use std::str; use std::io; use std::io::{IoResult, MemWriter}; -use std::vec::Vec; // The &mut State is stored here to prevent recursive type. pub enum AnnNode<'a> { @@ -2392,8 +2391,6 @@ mod test { use codemap; use parse::token; - use std::vec::Vec; - #[test] fn test_fun_to_str() { let abba_ident = token::str_to_ident("abba"); |
