about summary refs log tree commit diff
path: root/src/liblibc/lib.rs
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2015-08-16 05:10:23 +0000
committerbors <bors@rust-lang.org>2015-08-16 05:10:23 +0000
commit9165a4e2dcaaa878a33379c6ff097c68f0ca0485 (patch)
tree26f976828c10dbfb3e895569bfa434c6bc6e650b /src/liblibc/lib.rs
parentfc7efab3ab48e119e1a59281c26e666634ad1224 (diff)
parent8ef1e3b77f0f0c365c6c11ebc5095997c8f0cd15 (diff)
downloadrust-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/liblibc/lib.rs')
-rw-r--r--src/liblibc/lib.rs5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/liblibc/lib.rs b/src/liblibc/lib.rs
index 82edce6bdbd..08f0b2aa895 100644
--- a/src/liblibc/lib.rs
+++ b/src/liblibc/lib.rs
@@ -12,8 +12,9 @@
 #![cfg_attr(stage0, feature(custom_attribute))]
 #![crate_name = "libc"]
 #![crate_type = "rlib"]
-#![cfg_attr(not(feature = "cargo-build"), unstable(feature = "libc",
-                                                   reason = "use `libc` from crates.io"))]
+#![cfg_attr(not(feature = "cargo-build"),
+            unstable(feature = "libc", reason = "use `libc` from crates.io",
+                     issue = "27783"))]
 #![cfg_attr(not(feature = "cargo-build"), feature(staged_api, no_std))]
 #![cfg_attr(not(feature = "cargo-build"), staged_api)]
 #![cfg_attr(not(feature = "cargo-build"), no_std)]