diff options
| author | bors <bors@rust-lang.org> | 2013-10-17 11:06:31 -0700 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2013-10-17 11:06:31 -0700 |
| commit | d773a024a2976f2759235551a52101cd08b37cce (patch) | |
| tree | 3751e8ff14bf7860fd49850a1d6c8db4e7205ce4 /src/libstd/fmt/rt.rs | |
| parent | d4a32386f3b61a4997de54ed00c0a80fd07ecc75 (diff) | |
| parent | 0adb41d0eb44ef74e897c22d9f1fcd8f97ef3458 (diff) | |
| download | rust-d773a024a2976f2759235551a52101cd08b37cce.tar.gz rust-d773a024a2976f2759235551a52101cd08b37cce.zip | |
auto merge of #9908 : alexcrichton/rust/snapshots, r=thestinger
Diffstat (limited to 'src/libstd/fmt/rt.rs')
| -rw-r--r-- | src/libstd/fmt/rt.rs | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/libstd/fmt/rt.rs b/src/libstd/fmt/rt.rs index 063d712dfa9..b20af1a35b8 100644 --- a/src/libstd/fmt/rt.rs +++ b/src/libstd/fmt/rt.rs @@ -34,16 +34,6 @@ pub struct Argument<'self> { method: Option<&'self Method<'self>> } -#[cfg(stage0)] -pub struct FormatSpec { - fill: char, - align: parse::Alignment, - flags: uint, - precision: parse::Count, - width: parse::Count, -} - -#[cfg(not(stage0))] pub struct FormatSpec { fill: char, align: parse::Alignment, @@ -52,7 +42,6 @@ pub struct FormatSpec { width: Count, } -#[cfg(not(stage0))] pub enum Count { CountIs(uint), CountIsParam(uint), CountIsNextParam, CountImplied, } |
