Skip to content

Commit a92ee0f

Browse files
committed
Register new snapshots
1 parent 28a3e8b commit a92ee0f

File tree

18 files changed

+39
-81
lines changed

18 files changed

+39
-81
lines changed

src/libcollections/borrow.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,12 +95,12 @@ pub enum Cow<'a, B: ?Sized + 'a>
9595
{
9696
/// Borrowed data.
9797
#[stable(feature = "rust1", since = "1.0.0")]
98-
Borrowed(#[cfg_attr(not(stage0), stable(feature = "rust1", since = "1.0.0"))] &'a B),
98+
Borrowed(#[stable(feature = "rust1", since = "1.0.0")] &'a B),
9999

100100
/// Owned data.
101101
#[stable(feature = "rust1", since = "1.0.0")]
102102
Owned(
103-
#[cfg_attr(not(stage0), stable(feature = "rust1", since = "1.0.0"))] <B as ToOwned>::Owned
103+
#[stable(feature = "rust1", since = "1.0.0")] <B as ToOwned>::Owned
104104
),
105105
}
106106

src/libcollections/btree/map.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -238,13 +238,13 @@ pub enum Entry<'a, K: 'a, V: 'a> {
238238
/// A vacant Entry
239239
#[stable(feature = "rust1", since = "1.0.0")]
240240
Vacant(
241-
#[cfg_attr(not(stage0), stable(feature = "rust1", since = "1.0.0"))] VacantEntry<'a, K, V>
241+
#[stable(feature = "rust1", since = "1.0.0")] VacantEntry<'a, K, V>
242242
),
243243

244244
/// An occupied Entry
245245
#[stable(feature = "rust1", since = "1.0.0")]
246246
Occupied(
247-
#[cfg_attr(not(stage0), stable(feature = "rust1", since = "1.0.0"))] OccupiedEntry<'a, K, V>
247+
#[stable(feature = "rust1", since = "1.0.0")] OccupiedEntry<'a, K, V>
248248
),
249249
}
250250

src/libcore/intrinsics.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -559,8 +559,5 @@ extern "rust-intrinsic" {
559559
/// platforms this is a `*mut *mut T` which is filled in by the compiler and
560560
/// on MSVC it's `*mut [usize; 2]`. For more information see the compiler's
561561
/// source as well as std's catch implementation.
562-
#[cfg(not(stage0))]
563562
pub fn try(f: fn(*mut u8), data: *mut u8, local_ptr: *mut u8) -> i32;
564-
#[cfg(stage0)]
565-
pub fn try(f: fn(*mut u8), data: *mut u8) -> *mut u8;
566563
}

src/libcore/option.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ pub enum Option<T> {
169169
None,
170170
/// Some value `T`
171171
#[stable(feature = "rust1", since = "1.0.0")]
172-
Some(#[cfg_attr(not(stage0), stable(feature = "rust1", since = "1.0.0"))] T)
172+
Some(#[stable(feature = "rust1", since = "1.0.0")] T)
173173
}
174174

175175
/////////////////////////////////////////////////////////////////////////////

src/libcore/result.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -250,11 +250,11 @@ use option::Option::{self, None, Some};
250250
pub enum Result<T, E> {
251251
/// Contains the success value
252252
#[stable(feature = "rust1", since = "1.0.0")]
253-
Ok(#[cfg_attr(not(stage0), stable(feature = "rust1", since = "1.0.0"))] T),
253+
Ok(#[stable(feature = "rust1", since = "1.0.0")] T),
254254

255255
/// Contains the error value
256256
#[stable(feature = "rust1", since = "1.0.0")]
257-
Err(#[cfg_attr(not(stage0), stable(feature = "rust1", since = "1.0.0"))] E)
257+
Err(#[stable(feature = "rust1", since = "1.0.0")] E)
258258
}
259259

260260
/////////////////////////////////////////////////////////////////////////////

src/libstd/collections/hash/map.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1402,13 +1402,13 @@ pub enum Entry<'a, K: 'a, V: 'a> {
14021402
/// An occupied Entry.
14031403
#[stable(feature = "rust1", since = "1.0.0")]
14041404
Occupied(
1405-
#[cfg_attr(not(stage0), stable(feature = "rust1", since = "1.0.0"))] OccupiedEntry<'a, K, V>
1405+
#[stable(feature = "rust1", since = "1.0.0")] OccupiedEntry<'a, K, V>
14061406
),
14071407

14081408
/// A vacant Entry.
14091409
#[stable(feature = "rust1", since = "1.0.0")]
14101410
Vacant(
1411-
#[cfg_attr(not(stage0), stable(feature = "rust1", since = "1.0.0"))] VacantEntry<'a, K, V>
1411+
#[stable(feature = "rust1", since = "1.0.0")] VacantEntry<'a, K, V>
14121412
),
14131413
}
14141414

src/libstd/env.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ pub enum VarError {
218218
/// valid unicode data. The found data is returned as a payload of this
219219
/// variant.
220220
#[stable(feature = "env", since = "1.0.0")]
221-
NotUnicode(#[cfg_attr(not(stage0), stable(feature = "env", since = "1.0.0"))] OsString),
221+
NotUnicode(#[stable(feature = "env", since = "1.0.0")] OsString),
222222
}
223223

224224
#[stable(feature = "env", since = "1.0.0")]

src/libstd/io/mod.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1175,23 +1175,23 @@ pub trait Seek {
11751175
pub 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

11971197
fn read_until<R: BufRead + ?Sized>(r: &mut R, delim: u8, buf: &mut Vec<u8>)

src/libstd/net/addr.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ use slice;
3232
pub enum SocketAddr {
3333
/// An IPv4 socket address which is a (ip, port) combination.
3434
#[stable(feature = "rust1", since = "1.0.0")]
35-
V4(#[cfg_attr(not(stage0), stable(feature = "rust1", since = "1.0.0"))] SocketAddrV4),
35+
V4(#[stable(feature = "rust1", since = "1.0.0")] SocketAddrV4),
3636
/// An IPv6 socket address
3737
#[stable(feature = "rust1", since = "1.0.0")]
38-
V6(#[cfg_attr(not(stage0), stable(feature = "rust1", since = "1.0.0"))] SocketAddrV6),
38+
V6(#[stable(feature = "rust1", since = "1.0.0")] SocketAddrV6),
3939
}
4040

4141
/// An IPv4 socket address which is a (ip, port) combination.

src/libstd/net/ip.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ use sys_common::{AsInner, FromInner};
2727
pub enum IpAddr {
2828
/// Representation of an IPv4 address.
2929
#[stable(feature = "ip_addr", since = "1.7.0")]
30-
V4(#[cfg_attr(not(stage0), stable(feature = "rust1", since = "1.7.0"))] Ipv4Addr),
30+
V4(#[stable(feature = "ip_addr", since = "1.7.0")] Ipv4Addr),
3131
/// Representation of an IPv6 address.
3232
#[stable(feature = "ip_addr", since = "1.7.0")]
33-
V6(#[cfg_attr(not(stage0), stable(feature = "rust1", since = "1.7.0"))] Ipv6Addr),
33+
V6(#[stable(feature = "ip_addr", since = "1.7.0")] Ipv6Addr),
3434
}
3535

3636
/// Representation of an IPv4 address.

0 commit comments

Comments
 (0)