diff options
| author | Mark Rousskov <mark.simulacrum@gmail.com> | 2019-01-19 16:25:06 -0700 |
|---|---|---|
| committer | Mark Rousskov <mark.simulacrum@gmail.com> | 2019-01-26 08:02:08 -0700 |
| commit | b7f030e114186890612872c89498cbc914c0220f (patch) | |
| tree | 0caddc882edfebfe8b9340d564452367351f6ea6 /src/libstd | |
| parent | f95834b2a92aa1571d6339d50a34616515773f1c (diff) | |
| download | rust-b7f030e114186890612872c89498cbc914c0220f.tar.gz rust-b7f030e114186890612872c89498cbc914c0220f.zip | |
Bump bootstrap compiler to 1.33 beta
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/lib.rs | 3 | ||||
| -rw-r--r-- | src/libstd/net/ip.rs | 1 |
2 files changed, 0 insertions, 4 deletions
diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs index 82f3463dba0..c94a33da037 100644 --- a/src/libstd/lib.rs +++ b/src/libstd/lib.rs @@ -234,12 +234,9 @@ #![feature(c_variadic)] #![feature(cfg_target_has_atomic)] #![feature(cfg_target_thread_local)] -#![cfg_attr(stage0, feature(cfg_target_vendor))] #![feature(char_error_internals)] #![feature(compiler_builtins_lib)] #![feature(concat_idents)] -#![cfg_attr(stage0, feature(const_int_ops))] -#![cfg_attr(stage0, feature(const_ip))] #![feature(const_raw_ptr_deref)] #![feature(const_cstr_unchecked)] #![feature(core_intrinsics)] diff --git a/src/libstd/net/ip.rs b/src/libstd/net/ip.rs index f98113e0896..f45cd8b8c10 100644 --- a/src/libstd/net/ip.rs +++ b/src/libstd/net/ip.rs @@ -328,7 +328,6 @@ impl Ipv4Addr { /// let addr = Ipv4Addr::new(127, 0, 0, 1); /// ``` #[stable(feature = "rust1", since = "1.0.0")] - #[cfg_attr(stage0, rustc_const_unstable(feature = "const_ip"))] pub const fn new(a: u8, b: u8, c: u8, d: u8) -> Ipv4Addr { Ipv4Addr { inner: c::in_addr { |
