Skip to content

Commit ff9f2d2

Browse files
committed
Auto merge of #42712 - frewsxcv:rollup, r=frewsxcv
Rollup of 3 pull requests - Successful merges: #42660, #42662, #42705 - Failed merges:
2 parents 08d920c + 6062bf7 commit ff9f2d2

File tree

13 files changed

+80
-45
lines changed

13 files changed

+80
-45
lines changed

src/doc/book

Submodule book updated 84 files

src/liballoc/rc.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,7 @@ impl Rc<str> {
428428
#[doc(hidden)]
429429
#[unstable(feature = "rustc_private",
430430
reason = "for internal use in rustc",
431-
issue = "0")]
431+
issue = "27812")]
432432
pub fn __from_str(value: &str) -> Rc<str> {
433433
unsafe {
434434
// Allocate enough space for `RcBox<str>`.
@@ -453,7 +453,7 @@ impl<T> Rc<[T]> {
453453
#[doc(hidden)]
454454
#[unstable(feature = "rustc_private",
455455
reason = "for internal use in rustc",
456-
issue = "0")]
456+
issue = "27812")]
457457
pub fn __from_array(value: Box<[T]>) -> Rc<[T]> {
458458
unsafe {
459459
let ptr: *mut RcBox<[T]> =

src/libcore/hash/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ use mem;
9999
#[allow(deprecated)]
100100
pub use self::sip::SipHasher;
101101

102-
#[unstable(feature = "sip_hash_13", issue = "29754")]
102+
#[unstable(feature = "sip_hash_13", issue = "34767")]
103103
#[allow(deprecated)]
104104
pub use self::sip::{SipHasher13, SipHasher24};
105105

src/libcore/str/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2085,7 +2085,7 @@ pub trait StrExt {
20852085
fn is_char_boundary(&self, index: usize) -> bool;
20862086
#[stable(feature = "core", since = "1.6.0")]
20872087
fn as_bytes(&self) -> &[u8];
2088-
#[unstable(feature = "str_mut_extras", issue = "0")]
2088+
#[unstable(feature = "str_mut_extras", issue = "41119")]
20892089
unsafe fn as_bytes_mut(&mut self) -> &mut [u8];
20902090
#[stable(feature = "core", since = "1.6.0")]
20912091
fn find<'a, P: Pattern<'a>>(&'a self, pat: P) -> Option<usize>;

src/libfmt_macros/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
#![deny(warnings)]
2727

2828
#![cfg_attr(stage0, feature(staged_api))]
29-
#![feature(unicode)]
29+
#![feature(rustc_private)]
3030

3131
pub use self::Piece::*;
3232
pub use self::Position::*;

src/librustc/infer/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,4 +236,4 @@ yet, that's what we're trying to find! In our code, we opt to unify
236236

237237
We make use of a trait-like implementation strategy to consolidate
238238
duplicated code between subtypes, GLB, and LUB computations. See the
239-
section on "Type Combining" below for details.
239+
section on "Type Combining" in combine.rs for more details.

src/librustc_trans/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@
3333
#![feature(quote)]
3434
#![feature(rustc_diagnostic_macros)]
3535
#![feature(slice_patterns)]
36-
#![feature(unicode)]
3736
#![feature(conservative_impl_trait)]
3837
#![feature(command_envs)]
3938

src/libstd/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -484,7 +484,7 @@ pub mod rt;
484484
// but it may be stabilized long-term. As a result we're exposing a hidden,
485485
// unstable module so we can get our build working.
486486
#[doc(hidden)]
487-
#[unstable(feature = "rand", issue = "0")]
487+
#[unstable(feature = "rand", issue = "27703")]
488488
pub mod __rand {
489489
pub use rand::{thread_rng, ThreadRng, Rng};
490490
}

src/libstd/rand/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
//! between the two sources. (Also note that, on some systems e.g. FreeBSD, both `/dev/random`
5757
//! and `/dev/urandom` may block once if the CSPRNG has not seeded yet.)
5858
59-
#![unstable(feature = "rand", issue = "0")]
59+
#![unstable(feature = "rand", issue = "27703")]
6060

6161
use cell::RefCell;
6262
use fmt;

src/libstd_unicode/char.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -599,9 +599,9 @@ impl char {
599599
/// 'XID_Start' is a Unicode Derived Property specified in
600600
/// [UAX #31](http://unicode.org/reports/tr31/#NFKC_Modifications),
601601
/// mostly similar to `ID_Start` but modified for closure under `NFKx`.
602-
#[unstable(feature = "unicode",
602+
#[unstable(feature = "rustc_private",
603603
reason = "mainly needed for compiler internals",
604-
issue = "0")]
604+
issue = "27812")]
605605
#[inline]
606606
pub fn is_xid_start(self) -> bool {
607607
derived_property::XID_Start(self)
@@ -613,9 +613,9 @@ impl char {
613613
/// 'XID_Continue' is a Unicode Derived Property specified in
614614
/// [UAX #31](http://unicode.org/reports/tr31/#NFKC_Modifications),
615615
/// mostly similar to 'ID_Continue' but modified for closure under NFKx.
616-
#[unstable(feature = "unicode",
616+
#[unstable(feature = "rustc_private",
617617
reason = "mainly needed for compiler internals",
618-
issue = "0")]
618+
issue = "27812")]
619619
#[inline]
620620
pub fn is_xid_continue(self) -> bool {
621621
derived_property::XID_Continue(self)

0 commit comments

Comments
 (0)