Skip to content

Commit

Permalink
Fix breakage due to rust-lang/rust#77302
Browse files Browse the repository at this point in the history
  • Loading branch information
Xanewok committed Nov 19, 2020
1 parent 82a5595 commit 54523f0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion rust-toolchain
Original file line number Diff line number Diff line change
@@ -1 +1 @@
nightly-2020-09-25
nightly-2020-09-30
2 changes: 1 addition & 1 deletion src/bin/rust-semver-public.rs
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ fn main() {
};

let args = args;
rustc_driver::run_compiler(&args, &mut PubCallbacks, None, None)
rustc_driver::run_compiler(&args, &mut PubCallbacks, None, None, None)
}
.map_or_else(|_| 1, |_| 0),
)
Expand Down
2 changes: 1 addition & 1 deletion src/bin/rust-semverver.rs
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ fn main() {
};

let args = args;
rustc_driver::run_compiler(&args, &mut SemverCallbacks, None, None)
rustc_driver::run_compiler(&args, &mut SemverCallbacks, None, None, None)
}
.map_or_else(|_| 1, |_| 0),
)
Expand Down

0 comments on commit 54523f0

Please sign in to comment.