You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm running ctest on Rust bindings generated by bindgen, and while an older bindgen used c_float, newer versions use f32 instead. ctest happily converts c_float to float, but f32 yields errors like:
cargo:warning=/Users/jdm/src/rust-harfbuzz/target/debug/build/harfbuzz-sys-test-256f53a27904a18b/out/all.c:2043:18: error: unknown type name 'f32'
cargo:warning= f32* __test_field_type_hb_variation_t_value(struct hb_variation_t* b) {
The text was updated successfully, but these errors were encountered:
I'm running ctest on Rust bindings generated by bindgen, and while an older bindgen used
c_float
, newer versions usef32
instead. ctest happily convertsc_float
tofloat
, butf32
yields errors like:The text was updated successfully, but these errors were encountered: