From 281d787f6b422fe089960d84d6c68a65a93590d7 Mon Sep 17 00:00:00 2001 From: Mazdak Farrokhzad Date: Sat, 15 Jun 2019 19:00:49 +0200 Subject: [PATCH] cleanup some new active feature gates. --- src/libsyntax/feature_gate.rs | 5 ++--- 1 file 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 @@ pub fn walk_feature_fields(&self, mut f: F) // 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. -- 2.44.0