1
Fork 0

Mark feature gate as accepted

This commit is contained in:
Dylan MacKenzie 2020-05-21 11:44:45 -07:00
parent 25687caa2e
commit 66f0cef1b1
2 changed files with 2 additions and 3 deletions

View file

@ -261,6 +261,8 @@ declare_features! (
(accepted, transparent_enums, "1.42.0", Some(60405), None),
/// Allows using subslice patterns, `[a, .., b]` and `[a, xs @ .., b]`.
(accepted, slice_patterns, "1.42.0", Some(62254), None),
/// Allows the use of `if` and `match` in constants.
(accepted, const_if_match, "1.45.0", Some(49146), None),
// -------------------------------------------------------------------------
// feature-group-end: accepted features

View file

@ -518,9 +518,6 @@ declare_features! (
/// Allows using the `#[register_tool]` attribute.
(active, register_tool, "1.41.0", Some(66079), None),
/// Allows the use of `if` and `match` in constants.
(active, const_if_match, "1.41.0", Some(49146), None),
/// Allows the use of `#[cfg(sanitize = "option")]`; set when -Zsanitizer is used.
(active, cfg_sanitize, "1.41.0", Some(39699), None),