diff options
| author | Tim Neumann <mail@timnn.me> | 2016-03-23 17:14:19 +0100 |
|---|---|---|
| committer | Tim Neumann <mail@timnn.me> | 2016-03-23 17:14:19 +0100 |
| commit | 7027521daa0e4b3891151a9e0700786febf1cfa2 (patch) | |
| tree | 2ea114fc83801aca7a331f60e38011e91e47e18b | |
| parent | 26cfc269a0ec6a7c895c38954e9701b62940df07 (diff) | |
| download | rust-7027521daa0e4b3891151a9e0700786febf1cfa2.tar.gz rust-7027521daa0e4b3891151a9e0700786febf1cfa2.zip | |
add naked function tracking issue # to feature gate definition
| -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), |
