Skip to content

Commit

Permalink
Fix build.
Browse files Browse the repository at this point in the history
  • Loading branch information
schungx committed Oct 25, 2023
1 parent dab3be4 commit f670531
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ fn main() {
let json_fns = engine.gen_fn_metadata_to_json(false).unwrap();
println!("{json_fns}");
let v: Metadata = serde_json::from_str(&json_fns).unwrap();
for function in v.functions {
for function in &v.functions {
println!("{:?}", function);
}

Expand Down

0 comments on commit f670531

Please sign in to comment.