[bindings] Drop useless `#[no_mangle]` from `pub type` definitions
authorMatt Corallo <git@bluematt.me>
Wed, 30 Dec 2020 20:14:42 +0000 (15:14 -0500)
committerMatt Corallo <git@bluematt.me>
Fri, 15 Jan 2021 00:49:14 +0000 (19:49 -0500)
Newer rustc complains that "attribute should be applied to a function or
static"

c-bindings-gen/src/types.rs

index b1318e72f65035e5d5b709ee0759078f67e0b322..273899fa4730e8b9f46cffa19a1fd267add932fa 100644 (file)
@@ -1847,7 +1847,7 @@ impl<'a, 'c: 'a> TypeResolver<'a, 'c> {
                        self.crate_types.templates_defined.insert(mangled_container.clone(), true);
                        let mut created_container: Vec<u8> = 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();