Skip to content

Commit c20ed47

Browse files
committed
Remove debug
1 parent 82710ad commit c20ed47

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

bindgen/codegen/helpers.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ pub(crate) mod ast_ty {
254254
}
255255
None => None,
256256
};
257-
match dbg!(fk, ctx.options().convert_floats, bits) {
257+
match (fk, ctx.options().convert_floats, bits) {
258258
(FloatKind::Float16, _, _) => {
259259
// TODO: do f16 when rust lands it
260260
ctx.generated_bindgen_float16();

bindgen/codegen/mod.rs

-1
Original file line numberDiff line numberDiff line change
@@ -4652,7 +4652,6 @@ impl CodeGenerator for Function {
46524652
};
46534653

46544654
if utils::sig_unsupported_types(ctx, signature) {
4655-
warn!("Skipping function which passes or returns by value types not available in Rust.");
46564655
return None;
46574656
}
46584657

0 commit comments

Comments
 (0)