We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 82710ad commit c20ed47Copy full SHA for c20ed47
bindgen/codegen/helpers.rs
@@ -254,7 +254,7 @@ pub(crate) mod ast_ty {
254
}
255
None => None,
256
};
257
- match dbg!(fk, ctx.options().convert_floats, bits) {
+ match (fk, ctx.options().convert_floats, bits) {
258
(FloatKind::Float16, _, _) => {
259
// TODO: do f16 when rust lands it
260
ctx.generated_bindgen_float16();
bindgen/codegen/mod.rs
@@ -4652,7 +4652,6 @@ impl CodeGenerator for Function {
4652
4653
4654
if utils::sig_unsupported_types(ctx, signature) {
4655
- warn!("Skipping function which passes or returns by value types not available in Rust.");
4656
return None;
4657
4658
0 commit comments