about summary refs log tree commit diff
path: root/src/libsyntax
diff options
context:
space:
mode:
authorMazdak Farrokhzad <twingoow@gmail.com>2019-06-16 06:05:19 +0200
committerGitHub <noreply@github.com>2019-06-16 06:05:19 +0200
commitcd9bb48f7f6755fb32abf50799d3a6873c9af160 (patch)
tree165c6815c4a77a98a3d2f243ba0825d51faf7221 /src/libsyntax
parent2ba1d94f7a2579aeb68aa66ba304f23caaea85f1 (diff)
parent281d787f6b422fe089960d84d6c68a65a93590d7 (diff)
downloadrust-cd9bb48f7f6755fb32abf50799d3a6873c9af160.tar.gz
rust-cd9bb48f7f6755fb32abf50799d3a6873c9af160.zip
Rollup merge of #61869 - Centril:cleanup-feature-gates, r=alexreg
Cleanup some new active feature gates

r? @alexreg
Diffstat (limited to 'src/libsyntax')
-rw-r--r--src/libsyntax/feature_gate.rs5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/libsyntax/feature_gate.rs b/src/libsyntax/feature_gate.rs
index 004323301a2..1d8f68ec63a 100644
--- a/src/libsyntax/feature_gate.rs
+++ b/src/libsyntax/feature_gate.rs
@@ -557,11 +557,10 @@ declare_features! (
     // Allows the user of associated type bounds.
     (active, associated_type_bounds, "1.34.0", Some(52662), None),
 
-    // Attributes on formal function params
+    // Attributes on formal function params.
     (active, param_attrs, "1.36.0", Some(60406), None),
 
-    // Allows calling constructor functions in `const fn`
-    // FIXME Create issue
+    // Allows calling constructor functions in `const fn`.
     (active, const_constructor, "1.37.0", Some(61456), None),
 
     // #[repr(transparent)] on enums.