1
0
Fork 0
mirror of synced 2025-09-23 12:18:44 +00:00

rebase and fix linter issue

This commit is contained in:
Guillaume Ballet 2019-01-08 15:02:36 +01:00
parent 2127ff2e34
commit ce7b7c1419

View file

@ -200,8 +200,7 @@ fn main() {
match validate(fname) {
Ok(module) => {
let out_dir = env::var("OUT_DIR").unwrap();
let dest_path = Path::new(&out_dir)
.join(format!("{}.rs", modname));
let dest_path = Path::new(&out_dir).join(format!("{}.rs", modname));
let m0 = module.clone();
let m1 = add_global_if_missing(
"min_inputs",
@ -278,6 +277,5 @@ fn main() {
}
}
}
}
}