Skip to content
This repository was archived by the owner on Mar 7, 2021. It is now read-only.

Opaque another type #77

Merged
merged 1 commit into from
Jun 22, 2019
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
3 changes: 2 additions & 1 deletion build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,10 @@ const INCLUDED_VARS: &[&str] = &[
"VERIFY_WRITE",
];
const OPAQUE_TYPES: &[&str] = &[
// This needs to be opaque because it's both packed and aligned, which rustc
// These need to be opaque because they're both packed and aligned, which rustc
// doesn't support yet. See https://github.com/rust-lang/rust/issues/59154
// and https://github.com/rust-lang/rust-bindgen/issues/1538
"desc_struct",
"xregs_state",
];

Expand Down