From: Matt Corallo Date: Wed, 30 Dec 2020 20:14:42 +0000 (-0500) Subject: [bindings] Drop useless `#[no_mangle]` from `pub type` definitions X-Git-Tag: v0.0.13~38^2~3 X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=1479016331a6f03d9aab2aee620c86b71232ba9d;p=rust-lightning [bindings] Drop useless `#[no_mangle]` from `pub type` definitions Newer rustc complains that "attribute should be applied to a function or static" --- diff --git a/c-bindings-gen/src/types.rs b/c-bindings-gen/src/types.rs index b5bd87e1a..e3ae3bdef 100644 --- a/c-bindings-gen/src/types.rs +++ b/c-bindings-gen/src/types.rs @@ -1855,7 +1855,7 @@ impl<'a, 'c: 'a> TypeResolver<'a, 'c> { self.crate_types.templates_defined.insert(mangled_container.clone(), true); let mut created_container: Vec = Vec::new(); - write!(&mut created_container, "#[no_mangle]\npub type {} = ", mangled_container).unwrap(); + write!(&mut created_container, "pub type {} = ", mangled_container).unwrap(); write!(&mut created_container, "{}::C{}Templ<", Self::container_templ_path(), container_type).unwrap(); self.write_template_generics(&mut created_container, &mut args.iter().map(|t| *t), generics, is_ref, true); writeln!(&mut created_container, ">;").unwrap();