diff options
| author | Mark Mansi <markm@cs.wisc.edu> | 2018-11-24 16:09:37 -0600 |
|---|---|---|
| committer | Mark Mansi <markm@cs.wisc.edu> | 2018-11-27 13:08:41 -0600 |
| commit | c75ed34732f67ce41faf84e22e4896cabab14a40 (patch) | |
| tree | 13a8ef92692bc94b1b0a7da95880a3593280b322 /src/libsyntax | |
| parent | aeff91d97702c11cdb5992fd18bb2cf2fb99efda (diff) | |
| download | rust-c75ed34732f67ce41faf84e22e4896cabab14a40.tar.gz rust-c75ed34732f67ce41faf84e22e4896cabab14a40.zip | |
move feature gate to accepted
Diffstat (limited to 'src/libsyntax')
| -rw-r--r-- | src/libsyntax/feature_gate.rs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/libsyntax/feature_gate.rs b/src/libsyntax/feature_gate.rs index 73567765a04..cd503f25cfe 100644 --- a/src/libsyntax/feature_gate.rs +++ b/src/libsyntax/feature_gate.rs @@ -393,9 +393,6 @@ declare_features! ( // `extern` in paths (active, extern_in_paths, "1.23.0", Some(55600), None), - // Use `?` as the Kleene "at most one" operator - (active, macro_at_most_once_rep, "1.25.0", Some(48075), None), - // Infer static outlives requirements; RFC 2093 (active, infer_static_outlives_requirements, "1.26.0", Some(54185), None), @@ -689,6 +686,8 @@ declare_features! ( (accepted, extern_crate_item_prelude, "1.31.0", Some(55599), None), // Allows use of the :literal macro fragment specifier (RFC 1576) (accepted, macro_literal_matcher, "1.31.0", Some(35625), None), + // Use `?` as the Kleene "at most one" operator + (accepted, macro_at_most_once_rep, "1.32.0", Some(48075), None), ); // If you change this, please modify src/doc/unstable-book as well. You must |
