From: Matt Corallo Date: Wed, 22 Sep 2021 06:04:24 +0000 (+0000) Subject: Drop debug print that slipped in in a previous PR X-Git-Tag: v0.0.101.1~1^2~23 X-Git-Url: http://git.bitcoin.ninja/index.cgi?p=ldk-c-bindings;a=commitdiff_plain;h=8586fbb44bc6788e216acb5504d76a311d699593 Drop debug print that slipped in in a previous PR --- diff --git a/c-bindings-gen/src/main.rs b/c-bindings-gen/src/main.rs index ce69294..5ac8380 100644 --- a/c-bindings-gen/src/main.rs +++ b/c-bindings-gen/src/main.rs @@ -163,7 +163,6 @@ fn write_trait_impl_field_assign(w: &mut W, trait_path: &str, /// Write out the impl block for a defined trait struct which has a supertrait fn do_write_impl_trait(w: &mut W, trait_path: &str, _trait_name: &syn::Ident, for_obj: &str) { -eprintln!("{}", trait_path); match trait_path { "lightning::util::ser::Writeable" => { writeln!(w, "impl {} for {} {{", trait_path, for_obj).unwrap();