about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2016-03-23 16:24:39 -0700
committerbors <bors@rust-lang.org>2016-03-23 16:24:39 -0700
commit43843d06ea9598722b3af9019e8d0059c052382d (patch)
tree67ce6d4335b27047225430cef30c1fa7f4f2b863 /src
parent98f0a9128f0fc6545de14a5de8f0e91675045e56 (diff)
parent7027521daa0e4b3891151a9e0700786febf1cfa2 (diff)
downloadrust-43843d06ea9598722b3af9019e8d0059c052382d.tar.gz
rust-43843d06ea9598722b3af9019e8d0059c052382d.zip
Auto merge of #32455 - TimNN:patch-1, r=alexcrichton
add naked function tracking issue # to feature gate definition
Diffstat (limited to 'src')
-rw-r--r--src/libsyntax/feature_gate.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/feature_gate.rs b/src/libsyntax/feature_gate.rs
index 698913be292..299b7d8b9ba 100644
--- a/src/libsyntax/feature_gate.rs
+++ b/src/libsyntax/feature_gate.rs
@@ -213,7 +213,7 @@ const KNOWN_FEATURES: &'static [(&'static str, &'static str, Option<u32>, Status
     ("unwind_attributes", "1.4.0", None, Active),
 
     // allow the use of `#[naked]` on functions.
-    ("naked_functions", "1.9.0", None, Active),
+    ("naked_functions", "1.9.0", Some(32408), Active),
 
     // allow empty structs and enum variants with braces
     ("braced_empty_structs", "1.5.0", Some(29720), Accepted),