about summary refs log tree commit diff
path: root/src/libcore/ops
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2018-10-31 11:53:17 -0700
committerAlex Crichton <alex@alexcrichton.com>2018-10-31 11:53:50 -0700
commitd0060d72e5b0f6ff2537808ff090b7fb96c3d10a (patch)
treef68b873b1bf64e6987c49c6ffa98e1d08a86f1e9 /src/libcore/ops
parentde9666f123e800d5fc34210f23127aa6a5d6e4ef (diff)
downloadrust-d0060d72e5b0f6ff2537808ff090b7fb96c3d10a.tar.gz
rust-d0060d72e5b0f6ff2537808ff090b7fb96c3d10a.zip
Bump nightly to 1.32.0
* Also update the bootstrap compiler
* Update cargo to 1.32.0
* Clean out stage0 annotations
Diffstat (limited to 'src/libcore/ops')
-rw-r--r--src/libcore/ops/range.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/ops/range.rs b/src/libcore/ops/range.rs
index fd3e50998fe..6cfb1005325 100644
--- a/src/libcore/ops/range.rs
+++ b/src/libcore/ops/range.rs
@@ -391,7 +391,7 @@ impl<Idx> RangeInclusive<Idx> {
     /// ```
     #[stable(feature = "inclusive_range_methods", since = "1.27.0")]
     #[inline]
-    #[cfg_attr(not(stage0), rustc_promotable)]
+    #[rustc_promotable]
     pub const fn new(start: Idx, end: Idx) -> Self {
         Self { start, end, is_empty: None }
     }