Skip to content

Commit 23a7d30

Browse files
committed
Auto merge of #32806 - brson:fix-features, r=alexcrichton
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.
2 parents 924da29 + eb3b672 commit 23a7d30

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/libsyntax/feature_gate.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -218,10 +218,10 @@ const KNOWN_FEATURES: &'static [(&'static str, &'static str, Option<u32>, Status
218218
("naked_functions", "1.9.0", Some(32408), Active),
219219

220220
// allow empty structs and enum variants with braces
221-
("braced_empty_structs", "1.5.0", Some(29720), Accepted),
221+
("braced_empty_structs", "1.8.0", Some(29720), Accepted),
222222

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

226226
// allow `#[no_debug]`
227227
("no_debug", "1.5.0", Some(29721), Active),

0 commit comments

Comments
 (0)