Skip to content

Commit

Permalink
0.0.40
Browse files Browse the repository at this point in the history
  • Loading branch information
Billy-Sheppard committed Oct 3, 2024
1 parent 58aa373 commit 59ac6a3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ fn main() {
type_vec.push(s);
}
}
append_log(type_vec.clone().into_iter().join(""));
// append_log(type_vec.clone().into_iter().join(""));
let type_ = ident(&type_vec.into_iter().join("")).unwrap().to_token_stream();

quote!{
Expand Down Expand Up @@ -242,7 +242,7 @@ fn override_set_fn(s: &ItemStruct, field: &Field) -> Option<TokenStream> {

fn type_segments(type_: &syn::Type) -> (Vec<(String, syn::Type)>, Vec<String>) {
let type_segments = type_.to_token_stream().to_string();
append_log(&type_segments);
// append_log(&type_segments);
let segs = type_segments
.split("<")
.flat_map(|seg| seg.split(","))
Expand Down Expand Up @@ -276,7 +276,7 @@ fn type_segments(type_: &syn::Type) -> (Vec<(String, syn::Type)>, Vec<String>) {
acc
});

append_log(&seps);
// append_log(&seps);

(segs, seps)
}
Expand Down

0 comments on commit 59ac6a3

Please sign in to comment.