1
Fork 0

remove untagged_union feature gate

This commit is contained in:
Ralf Jung 2022-06-29 22:33:18 -04:00
parent 6dfede3b9d
commit 5bf6017b87
57 changed files with 386 additions and 449 deletions

View file

@ -180,6 +180,9 @@ declare_features! (
/// Allows using items which are missing stability attributes
(removed, unmarked_api, "1.0.0", None, None, None),
(removed, unsafe_no_drop_flag, "1.0.0", None, None, None),
/// Allows `union` fields that don't implement `Copy` as long as they don't have any drop glue.
(removed, untagged_unions, "1.13.0", Some(55149), None,
Some("unions with `Copy` and `MaybeUninit` fields are stable; there is no intent to stabilize more")),
/// Allows `#[unwind(..)]`.
///
/// Permits specifying whether a function should permit unwinding or abort on unwind.