about summary refs log tree commit diff
path: root/src/libstd/fmt/rt.rs
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2013-10-17 11:06:31 -0700
committerbors <bors@rust-lang.org>2013-10-17 11:06:31 -0700
commitd773a024a2976f2759235551a52101cd08b37cce (patch)
tree3751e8ff14bf7860fd49850a1d6c8db4e7205ce4 /src/libstd/fmt/rt.rs
parentd4a32386f3b61a4997de54ed00c0a80fd07ecc75 (diff)
parent0adb41d0eb44ef74e897c22d9f1fcd8f97ef3458 (diff)
downloadrust-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.rs11
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,
 }