diff options
| author | bors <bors@rust-lang.org> | 2015-08-16 05:10:23 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2015-08-16 05:10:23 +0000 |
| commit | 9165a4e2dcaaa878a33379c6ff097c68f0ca0485 (patch) | |
| tree | 26f976828c10dbfb3e895569bfa434c6bc6e650b /src/libstd/sys/common | |
| parent | fc7efab3ab48e119e1a59281c26e666634ad1224 (diff) | |
| parent | 8ef1e3b77f0f0c365c6c11ebc5095997c8f0cd15 (diff) | |
| download | rust-9165a4e2dcaaa878a33379c6ff097c68f0ca0485.tar.gz rust-9165a4e2dcaaa878a33379c6ff097c68f0ca0485.zip | |
Auto merge of #27818 - alexcrichton:tag-all-the-issues, r=aturon
This commit turns `#[unstable]` attributes missing an `issue` annotation into a hard error. This will require the libs team to ensure that there's a tracking issue for all unstable features in the standard library. All existing unstable features have had issues created and they've all been updated. Yay! Closes #26868
Diffstat (limited to 'src/libstd/sys/common')
| -rw-r--r-- | src/libstd/sys/common/remutex.rs | 4 | ||||
| -rw-r--r-- | src/libstd/sys/common/thread_local.rs | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/src/libstd/sys/common/remutex.rs b/src/libstd/sys/common/remutex.rs index 1676fe8220a..4df3441f87b 100644 --- a/src/libstd/sys/common/remutex.rs +++ b/src/libstd/sys/common/remutex.rs @@ -7,7 +7,9 @@ // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your // option. This file may not be copied, modified, or distributed // except according to those terms. -#![unstable(feature = "reentrant_mutex", reason = "new API")] + +#![unstable(feature = "reentrant_mutex", reason = "new API", + issue = "27738")] use prelude::v1::*; diff --git a/src/libstd/sys/common/thread_local.rs b/src/libstd/sys/common/thread_local.rs index f68c57c86ef..56885cdd56d 100644 --- a/src/libstd/sys/common/thread_local.rs +++ b/src/libstd/sys/common/thread_local.rs @@ -55,7 +55,7 @@ //! ``` #![allow(non_camel_case_types)] -#![unstable(feature = "thread_local_internals")] +#![unstable(feature = "thread_local_internals", issue = "0")] #![allow(dead_code)] // sys isn't exported yet use sync::atomic::{self, AtomicUsize, Ordering}; |
