]> git.lizzy.rs Git - rust.git/blobdiff - src/libcore/fmt/rt.rs
Register new snapshots
[rust.git] / src / libcore / fmt / rt.rs
index 6d3edeabca936a0c0ed982772e7bc54388ba7e67..388084b9ed8312a05aec0c4a092d3e9207f7b77f 100644 (file)
@@ -15,9 +15,6 @@
 //! these can be statically allocated and are slightly optimized for the runtime
 
 
-#[cfg(stage0)]
-use option::Option;
-
 #[doc(hidden)]
 pub enum Piece<'a> {
     String(&'a str),
@@ -28,8 +25,6 @@ pub enum Piece<'a> {
 pub struct Argument<'a> {
     pub position: Position,
     pub format: FormatSpec,
-    #[cfg(stage0)]
-    pub method: Option<uint>,
 }
 
 #[doc(hidden)]