Pop Flamingo
Pop Flamingo
> I believe this FIXME can be safely removed, since the empty implementation is intended in this case. I think you are right indeed! Thank you this has been fixed!...
@mitsuhiko From what I understand using `align(8)`: ```rust #[repr(C, align(8))] pub struct mj_value { _opaque: [u8; VALUE_SIZE], } ``` Would probably offer the proper alignement guarantees as long as `ValueRepr`...
EDIT: Unfortunately the example below is considered as non FFI safe so I suppose #[repr(C, align(8))] might be the best way, probably also adding a test and documentation enabling to...