Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow Rust vector of array of trivially relocatable type #1099

Merged
merged 1 commit into from
Sep 19, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions gen/src/write.rs
Original file line number Diff line number Diff line change
Expand Up @@ -472,10 +472,10 @@ fn check_trivial_extern_type(out: &mut OutFile, alias: &TypeAlias, reasons: &[Tr
writeln!(out, "static_assert(");
if reasons
.iter()
.all(|r| matches!(r, TrivialReason::StructField(_)))
.all(|r| matches!(r, TrivialReason::StructField(_) | TrivialReason::VecElement))
{
// If the type is only used as a struct field and not as by-value
// function argument or any other use, then C array of trivially
// If the type is only used as a struct field or Vec element, not as
// by-value function argument or return value, then C array of trivially
// relocatable type is also permissible.
//
// --- means something sane:
Expand Down