Use `()` instead of `[u8; 0]` in opaque type

pull/456/head
Thiago Trannin 9 months ago committed by Yuki Okushi
parent bc22988655
commit 38f5394280

@ -891,13 +891,13 @@ To do this in Rust, lets create our own opaque types:
```rust
#[repr(C)]
pub struct Foo {
_data: [u8; 0],
_data: (),
_marker:
core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}
#[repr(C)]
pub struct Bar {
_data: [u8; 0],
_data: (),
_marker:
core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

Loading…
Cancel
Save