Skip to content

Commit

Permalink
Don't explicitly warn against semicolon_in_expressions_from_macros
Browse files Browse the repository at this point in the history
This warns-by-default since 2 years and already has been added to the future-incompat group since Rust 1.68.

See rust-lang/rust#79813 for the tracking issue.
  • Loading branch information
Xanewok authored Dec 5, 2023
1 parent 36e4c2d commit e49866a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion miri-script/src/util.rs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ impl MiriEnv {
flags.push("-C link-args=-Wl,-rpath,");
flags.push(libdir);
// Enable rustc-specific lints (ignored without `-Zunstable-options`).
flags.push(" -Zunstable-options -Wrustc::internal -Wrust_2018_idioms -Wunused_lifetimes -Wsemicolon_in_expressions_from_macros");
flags.push(" -Zunstable-options -Wrustc::internal -Wrust_2018_idioms -Wunused_lifetimes");
// Add user-defined flags.
if let Some(value) = std::env::var_os("RUSTFLAGS") {
flags.push(" ");
Expand Down

0 comments on commit e49866a

Please sign in to comment.