Sean1708 / rusty-cheddar

A Rust crate for automatically generating C header files from Rust source file.
http://sean1708.github.io/rusty-cheddar/
191 stars 25 forks source link

const pointers are handled incorrectly. #32

Closed Sean1708 closed 8 years ago

Sean1708 commented 8 years ago

Currently *const *const f32 would be turned into const float**, it should be turned into float const* const*.