summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Gohman <dev@sunfishcode.online>2021-12-03 08:42:55 -0800
committerDan Gohman <dev@sunfishcode.online>2021-12-03 08:42:55 -0800
commit21f56751b2974e689186e0c9bd091cef9a956f6a (patch)
treed26108980f3d3662381bd5393d26a972d4236b3c
parent76f88e91cf417709f7c8e999dd60952cc0b1b6d9 (diff)
downloadrust-libc-21f56751b2974e689186e0c9bd091cef9a956f6a.tar.gz
Add `#[allow(missing_debug_implementations)]` to WASI's `max_align_t`.
-rw-r--r--src/wasi.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wasi.rs b/src/wasi.rs
index f35f34cd4f..13a564fc31 100644
--- a/src/wasi.rs
+++ b/src/wasi.rs
@@ -41,6 +41,7 @@ pub type wchar_t = i32;
s_no_extra_traits! {
#[repr(align(16))]
+ #[allow(missing_debug_implementations)]
pub struct max_align_t {
priv_: [f64; 4]
}