diff options
| author | bors <bors@rust-lang.org> | 2016-03-23 16:24:39 -0700 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2016-03-23 16:24:39 -0700 |
| commit | 43843d06ea9598722b3af9019e8d0059c052382d (patch) | |
| tree | 67ce6d4335b27047225430cef30c1fa7f4f2b863 /src | |
| parent | 98f0a9128f0fc6545de14a5de8f0e91675045e56 (diff) | |
| parent | 7027521daa0e4b3891151a9e0700786febf1cfa2 (diff) | |
| download | rust-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.rs | 2 |
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), |
