Skip to content

Commit f670531

Browse files
committed
Fix build.
1 parent dab3be4 commit f670531

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ fn main() {
6969
let json_fns = engine.gen_fn_metadata_to_json(false).unwrap();
7070
println!("{json_fns}");
7171
let v: Metadata = serde_json::from_str(&json_fns).unwrap();
72-
for function in v.functions {
72+
for function in &v.functions {
7373
println!("{:?}", function);
7474
}
7575

0 commit comments

Comments
 (0)