Drop debug print that slipped into git
authorMatt Corallo <git@bluematt.me>
Thu, 29 Apr 2021 22:18:52 +0000 (22:18 +0000)
committerMatt Corallo <git@bluematt.me>
Fri, 30 Apr 2021 04:35:57 +0000 (04:35 +0000)
c-bindings-gen/src/types.rs

index 99fafd490a065450dd93fc282e29144e47ccc058..9ef83f2a41a97221305f3aaeaecdf38f315ac712 100644 (file)
@@ -558,7 +558,6 @@ impl<'mod_lifetime, 'crate_lft: 'mod_lifetime> ImportResolver<'mod_lifetime, 'cr
        pub fn resolve_imported_refs(&self, mut ty: syn::Type) -> syn::Type {
                match &mut ty {
                        syn::Type::Path(p) => {
-eprintln!("rir {:?}", p);
                                if p.path.segments.len() != 1 { unimplemented!(); }
                                let mut args = p.path.segments[0].arguments.clone();
                                if let syn::PathArguments::AngleBracketed(ref mut generics) = &mut args {