@@ -1175,23 +1175,23 @@ pub trait Seek {
11751175pub enum SeekFrom {
11761176 /// Set the offset to the provided number of bytes.
11771177 #[ stable( feature = "rust1" , since = "1.0.0" ) ]
1178- Start ( #[ cfg_attr ( not ( stage0 ) , stable( feature = "rust1" , since = "1.0.0" ) ) ] u64 ) ,
1178+ Start ( #[ stable( feature = "rust1" , since = "1.0.0" ) ] u64 ) ,
11791179
11801180 /// Set the offset to the size of this object plus the specified number of
11811181 /// bytes.
11821182 ///
11831183 /// It is possible to seek beyond the end of an object, but it's an error to
11841184 /// seek before byte 0.
11851185 #[ stable( feature = "rust1" , since = "1.0.0" ) ]
1186- End ( #[ cfg_attr ( not ( stage0 ) , stable( feature = "rust1" , since = "1.0.0" ) ) ] i64 ) ,
1186+ End ( #[ stable( feature = "rust1" , since = "1.0.0" ) ] i64 ) ,
11871187
11881188 /// Set the offset to the current position plus the specified number of
11891189 /// bytes.
11901190 ///
11911191 /// It is possible to seek beyond the end of an object, but it's an error to
11921192 /// seek before byte 0.
11931193 #[ stable( feature = "rust1" , since = "1.0.0" ) ]
1194- Current ( #[ cfg_attr ( not ( stage0 ) , stable( feature = "rust1" , since = "1.0.0" ) ) ] i64 ) ,
1194+ Current ( #[ stable( feature = "rust1" , since = "1.0.0" ) ] i64 ) ,
11951195}
11961196
11971197fn read_until < R : BufRead + ?Sized > ( r : & mut R , delim : u8 , buf : & mut Vec < u8 > )
0 commit comments