Skip to content

Commit e5285be

Browse files
authored
Circumvent rust build regression
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.
1 parent 5afd2e4 commit e5285be

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/config/config_type.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ macro_rules! create_config {
121121
| "array_width"
122122
| "chain_width" => self.0.set_heuristics(),
123123
"license_template_path" => self.0.set_license_template(),
124-
&_ => (),
124+
_ => (),
125125
}
126126
}
127127
}
@@ -272,7 +272,7 @@ macro_rules! create_config {
272272
| "array_width"
273273
| "chain_width" => self.set_heuristics(),
274274
"license_template_path" => self.set_license_template(),
275-
&_ => (),
275+
_ => (),
276276
}
277277
}
278278

0 commit comments

Comments
 (0)