Skip to content

Commit c75ed34

Browse files
committed
move feature gate to accepted
1 parent aeff91d commit c75ed34

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/libsyntax/feature_gate.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -393,9 +393,6 @@ declare_features! (
393393
// `extern` in paths
394394
(active, extern_in_paths, "1.23.0", Some(55600), None),
395395

396-
// Use `?` as the Kleene "at most one" operator
397-
(active, macro_at_most_once_rep, "1.25.0", Some(48075), None),
398-
399396
// Infer static outlives requirements; RFC 2093
400397
(active, infer_static_outlives_requirements, "1.26.0", Some(54185), None),
401398

@@ -689,6 +686,8 @@ declare_features! (
689686
(accepted, extern_crate_item_prelude, "1.31.0", Some(55599), None),
690687
// Allows use of the :literal macro fragment specifier (RFC 1576)
691688
(accepted, macro_literal_matcher, "1.31.0", Some(35625), None),
689+
// Use `?` as the Kleene "at most one" operator
690+
(accepted, macro_at_most_once_rep, "1.32.0", Some(48075), None),
692691
);
693692

694693
// If you change this, please modify src/doc/unstable-book as well. You must

0 commit comments

Comments
 (0)