about summary refs log tree commit diff
path: root/src/libsyntax/feature_gate.rs
diff options
context:
space:
mode:
authorkennytm <kennytm@gmail.com>2018-02-14 16:14:38 +0800
committerkennytm <kennytm@gmail.com>2018-02-14 18:25:16 +0800
commit3bcaaf47a1a79db109d97df7f68ac647a78f4141 (patch)
tree4946ad2c2c0ddcec895c396fa4716e6efdbb44ca /src/libsyntax/feature_gate.rs
parent83bed7d3a7f388422cced710ec5cc82a185c1345 (diff)
parent45d5a420ada9c11f61347fd4c63c7f0234adaea7 (diff)
downloadrust-3bcaaf47a1a79db109d97df7f68ac647a78f4141.tar.gz
rust-3bcaaf47a1a79db109d97df7f68ac647a78f4141.zip
Rollup merge of #48130 - ollie27:stab, r=Mark-Simulacrum
Correct a few stability attributes

* `core_float_bits`, `duration_core`, `path_component_asref`, and `repr_align` were stabalized in 1.25.0 not 1.24.0.
* Impls for `NonNull` involving unstable things should remain unstable.
* `Duration` should remain stable since 1.3.0 so it appears correctly in the `std` docs.
* `cursor_mut_vec` is an impl on only stable things so should be marked stable.
Diffstat (limited to 'src/libsyntax/feature_gate.rs')
-rw-r--r--src/libsyntax/feature_gate.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/feature_gate.rs b/src/libsyntax/feature_gate.rs
index ea916d5168c..3b137f9570a 100644
--- a/src/libsyntax/feature_gate.rs
+++ b/src/libsyntax/feature_gate.rs
@@ -541,7 +541,7 @@ declare_features! (
     // instead of just the platforms on which it is the C ABI
     (accepted, abi_sysv64, "1.24.0", Some(36167)),
     // Allows `repr(align(16))` struct attribute (RFC 1358)
-    (accepted, repr_align, "1.24.0", Some(33626)),
+    (accepted, repr_align, "1.25.0", Some(33626)),
     // allow '|' at beginning of match arms (RFC 1925)
     (accepted, match_beginning_vert, "1.25.0", Some(44101)),
     // Nested groups in `use` (RFC 2128)