1
Fork 0

auto merge of #8820 : alexcrichton/rust/no-io-writer, r=brson

At the same time, this updates the TyVisitor to use a mutable self because it's
probably going to be mutating state as it goes along anyway.
This commit is contained in:
bors 2013-08-30 01:20:44 -07:00
commit f94844c558
11 changed files with 1715 additions and 501 deletions

View file

@ -178,8 +178,14 @@ pub mod run;
pub mod sys;
pub mod cast;
pub mod fmt;
#[cfg(stage0)] #[path = "repr_stage0.rs"]
pub mod repr;
#[cfg(not(stage0))]
pub mod repr;
pub mod cleanup;
#[cfg(stage0)] #[path = "reflect_stage0.rs"]
pub mod reflect;
#[cfg(not(stage0))]
pub mod reflect;
pub mod condition;
pub mod logging;