Skip to content

Commit

Permalink
Circumvent rust build regression
Browse files Browse the repository at this point in the history
rust-lang/rust#78549 is currently blocking build with latest nightly. Even though this issue is getting fixed, the above fix circumvents it and should make builds work again.
  • Loading branch information
Nadrieril authored Oct 30, 2020
1 parent 5afd2e4 commit e5285be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/config/config_type.rs
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ macro_rules! create_config {
| "array_width"
| "chain_width" => self.0.set_heuristics(),
"license_template_path" => self.0.set_license_template(),
&_ => (),
_ => (),
}
}
}
Expand Down Expand Up @@ -272,7 +272,7 @@ macro_rules! create_config {
| "array_width"
| "chain_width" => self.set_heuristics(),
"license_template_path" => self.set_license_template(),
&_ => (),
_ => (),
}
}

Expand Down

0 comments on commit e5285be

Please sign in to comment.