We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4cc212 commit ef4848cCopy full SHA for ef4848c
bindgen/codegen/helpers.rs
@@ -84,7 +84,11 @@ pub(crate) mod attributes {
84
/// just noise.
85
/// TODO: Should this be `MaybeUninit`, since padding bytes are effectively
86
/// uninitialized?
87
-pub(crate) fn blob(ctx: &BindgenContext, layout: Layout, ffi_safe: bool) -> syn::Type {
+pub(crate) fn blob(
88
+ ctx: &BindgenContext,
89
+ layout: Layout,
90
+ ffi_safe: bool,
91
+) -> syn::Type {
92
let opaque = layout.opaque();
93
94
// FIXME(emilio, #412): We fall back to byte alignment, but there are
0 commit comments