Add yet more missing #[repr(C)] to tests

This commit is contained in:
Austin Hicks 2016-11-20 13:22:54 -05:00
parent d754778083
commit c7ec0dfcb6

View File

@ -9,9 +9,11 @@
// except according to those terms.
//
#[repr(C)]
#[derive(Copy, Clone)]
pub struct Quad { a: u64, b: u64, c: u64, d: u64 }
#[repr(C)]
#[derive(Copy, Clone)]
pub struct Floats { a: f64, b: u8, c: f64 }