Skip to content

Commit c62396d

Browse files
committed
Auto merge of #4907 - krishna-veerareddy:fix-clippy-build, r=phansch
Fix clippy build failure Clippy build fails because the feature `result_map_or` has been stabilized in v1.41.0 but we still have an explicit feature attribute for it. changelog: none
2 parents f627ae2 + 728a241 commit c62396d

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

clippy_lints/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
#![cfg_attr(feature = "deny-warnings", deny(warnings))]
1313
#![feature(crate_visibility_modifier)]
1414
#![feature(concat_idents)]
15-
#![feature(result_map_or)]
1615

1716
// FIXME: switch to something more ergonomic here, once available.
1817
// (Currently there is no way to opt into sysroot crates without `extern crate`.)

src/driver.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#![cfg_attr(feature = "deny-warnings", deny(warnings))]
2-
#![feature(result_map_or)]
32
#![feature(rustc_private)]
43

54
// FIXME: switch to something more ergonomic here, once available.

0 commit comments

Comments
 (0)