gchp / rustbox

Rust implementation of the termbox library
MIT License
469 stars 48 forks source link

#[repr(C,u16)] -> #[repr(u16)] #68

Closed lambda-fairy closed 8 years ago

lambda-fairy commented 8 years ago

Because of how attribute parsing works, #[repr(C,u16)] is in fact equivalent to just #[repr(C)].

This commit changes the attribute to #[repr(u16)] instead.

See rust-lang/rust#34622

lambda-fairy commented 8 years ago

Seems to be fixed now, nvm