Skip to content

Commit d91655e

Browse files
committed
---
yaml --- r: 193173 b: refs/heads/beta c: 060661d h: refs/heads/master i: 193171: 091cc62 v: v3
1 parent 892e9a1 commit d91655e

File tree

4 files changed

+5
-2
lines changed

4 files changed

+5
-2
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ refs/heads/automation-fail: 1bf06495443584539b958873e04cc2f864ab10e4
3131
refs/heads/issue-18208-method-dispatch-3-quick-reject: 2009f85b9f99dedcec4404418eda9ddba90258a2
3232
refs/heads/batch: b7fd822592a4fb577552d93010c4a4e14f314346
3333
refs/heads/building: 126db549b038c84269a1e4fe46f051b2c15d6970
34-
refs/heads/beta: eafdc7135b79d2e51da740b67946512d949632a1
34+
refs/heads/beta: 060661d2b4a323c83a1bf043234eae8a344ff6aa
3535
refs/heads/windistfix: 7608dbad651f02e837ed05eef3d74a6662a6e928
3636
refs/tags/1.0.0-alpha: e42bd6d93a1d3433c486200587f8f9e12590a4d7
3737
refs/heads/tmp: de8a23bbc3a7b9cbd7574b5b91a34af59bf030e6

branches/beta/src/libcore/str/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -939,6 +939,7 @@ impl<'a, P: Pattern<'a>> Iterator for SplitStr<'a, P> {
939939
type Item = &'a str;
940940

941941
#[inline]
942+
#[allow(deprecated)]
942943
fn next(&mut self) -> Option<&'a str> {
943944
Iterator::next(&mut self.0)
944945
}

branches/beta/src/libstd/sync/mpsc/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,7 @@ impl<T> !Sync for SyncSender<T> {}
384384
/// contains the data being sent as a payload so it can be recovered.
385385
#[stable(feature = "rust1", since = "1.0.0")]
386386
#[derive(PartialEq, Eq, Clone, Copy)]
387-
pub struct SendError<T>(pub T);
387+
pub struct SendError<T>(#[stable(feature = "rust1", since = "1.0.0")] pub T);
388388

389389
/// An error returned from the `recv` function on a `Receiver`.
390390
///

branches/beta/src/libstd/thread_local/mod.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,10 +105,12 @@ pub struct Key<T> {
105105
// This is trivially devirtualizable by LLVM because we never store anything
106106
// to this field and rustc can declare the `static` as constant as well.
107107
#[doc(hidden)]
108+
#[unstable(feature = "thread_local_internals")]
108109
pub inner: fn() -> &'static __impl::KeyInner<UnsafeCell<Option<T>>>,
109110

110111
// initialization routine to invoke to create a value
111112
#[doc(hidden)]
113+
#[unstable(feature = "thread_local_internals")]
112114
pub init: fn() -> T,
113115
}
114116

0 commit comments

Comments
 (0)