diff options
| author | bors <bors@rust-lang.org> | 2013-08-30 01:20:44 -0700 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2013-08-30 01:20:44 -0700 |
| commit | f94844c55893de9489cf64c4a8b9d66c962a560b (patch) | |
| tree | 46cfa3c1990256af769a61a59419531eab92dc39 /src/libstd/std.rs | |
| parent | 974f854bb528c9a94af62990965ac62a1aa0dbed (diff) | |
| parent | 97f61e7bbeca5c9524126ca75670fc45d1b1a951 (diff) | |
| download | rust-f94844c55893de9489cf64c4a8b9d66c962a560b.tar.gz rust-f94844c55893de9489cf64c4a8b9d66c962a560b.zip | |
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.
Diffstat (limited to 'src/libstd/std.rs')
| -rw-r--r-- | src/libstd/std.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/libstd/std.rs b/src/libstd/std.rs index 0d754323727..ce0202ded7e 100644 --- a/src/libstd/std.rs +++ b/src/libstd/std.rs @@ -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; |
