diff options
| author | bors <bors@rust-lang.org> | 2014-01-17 12:02:07 -0800 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2014-01-17 12:02:07 -0800 |
| commit | 9bf85a250c93fbd5e65440bba6d300908fb08b9a (patch) | |
| tree | b51dbfa6246381cdd109b87737e9385e40981b95 /src/libsyntax/parse | |
| parent | 4098327b1fe1112ddf661b587be9eeec1d80adde (diff) | |
| parent | 295b46fc08c8cc6da0a144cd90c401d5b26a1faf (diff) | |
| download | rust-9bf85a250c93fbd5e65440bba6d300908fb08b9a.tar.gz rust-9bf85a250c93fbd5e65440bba6d300908fb08b9a.zip | |
auto merge of #11598 : alexcrichton/rust/io-export, r=brson
* Reexport io::mem and io::buffered structs directly under io, make mem/buffered private modules * Remove with_mem_writer * Remove DEFAULT_CAPACITY and use DEFAULT_BUF_SIZE (in io::buffered) cc #11119
Diffstat (limited to 'src/libsyntax/parse')
| -rw-r--r-- | src/libsyntax/parse/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/parse/mod.rs b/src/libsyntax/parse/mod.rs index 78328efdd0b..b1a80878cf1 100644 --- a/src/libsyntax/parse/mod.rs +++ b/src/libsyntax/parse/mod.rs @@ -298,7 +298,7 @@ mod test { use extra::serialize::Encodable; use extra; use std::io; - use std::io::mem::MemWriter; + use std::io::MemWriter; use std::str; use codemap::{Span, BytePos, Spanned}; use opt_vec; |
