diff options
| author | Manish Goregaokar <manishsmail@gmail.com> | 2015-02-15 18:29:06 +0530 |
|---|---|---|
| committer | Manish Goregaokar <manishsmail@gmail.com> | 2015-02-15 18:42:43 +0530 |
| commit | 2935d67e08c31067ddc9d3f6589054b5f7dad81a (patch) | |
| tree | 148257f0e0ac547984e9f24fe64ce3e3f4ead623 /src/libsyntax | |
| parent | f96fb8ecb82bdab279f955a44fdb80e309815c6c (diff) | |
| parent | a7d5c3f682002157c9d74cce773fb792d92333e1 (diff) | |
| download | rust-2935d67e08c31067ddc9d3f6589054b5f7dad81a.tar.gz rust-2935d67e08c31067ddc9d3f6589054b5f7dad81a.zip | |
Rollup merge of #22277 - pnkfelix:reference-update-feature-gate-list, r=steveklabnik
Added all active features to the list in reference.md. Added a second note about keeping the reference.md list up-to-date to the bottom of the list, since not everyone (including me) reads the big comment at the top of it. :) Ensured that the feature gate list in reference.md is kept in alphabetical order.
Diffstat (limited to 'src/libsyntax')
| -rw-r--r-- | src/libsyntax/feature_gate.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libsyntax/feature_gate.rs b/src/libsyntax/feature_gate.rs index d7cc4adaa57..fd1ca11818c 100644 --- a/src/libsyntax/feature_gate.rs +++ b/src/libsyntax/feature_gate.rs @@ -134,6 +134,7 @@ static KNOWN_FEATURES: &'static [(&'static str, &'static str, Status)] = &[ // switch to Accepted; see RFC 320) ("unsafe_no_drop_flag", "1.0.0", Active), ]; +// (changing above list without updating src/doc/reference.md makes @cmr sad) enum Status { /// Represents an active feature that is currently being implemented or |
