Skip to content

Commit

Permalink
Auto merge of #32806 - brson:fix-features, r=alexcrichton
Browse files Browse the repository at this point in the history
Set the version number for stabilization of braced_empty_structs

and augmented_assignment to 1.8.0.

Per the comments, the numbers in this table reflect the "current
status".

cc @rust-lang/libs @rust-lang/lang

Discovered this while hunting for 1.8 features. I'm afraid there may be more of these that are incorrect and we may have created a mess.
  • Loading branch information
bors committed Apr 11, 2016
2 parents 924da29 + eb3b672 commit 23a7d30
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/libsyntax/feature_gate.rs
Expand Up @@ -218,10 +218,10 @@ const KNOWN_FEATURES: &'static [(&'static str, &'static str, Option<u32>, Status
("naked_functions", "1.9.0", Some(32408), Active),

// allow empty structs and enum variants with braces
("braced_empty_structs", "1.5.0", Some(29720), Accepted),
("braced_empty_structs", "1.8.0", Some(29720), Accepted),

// allow overloading augmented assignment operations like `a += b`
("augmented_assignments", "1.5.0", Some(28235), Accepted),
("augmented_assignments", "1.8.0", Some(28235), Accepted),

// allow `#[no_debug]`
("no_debug", "1.5.0", Some(29721), Active),
Expand Down

0 comments on commit 23a7d30

Please sign in to comment.