Skip to content

Commit 1f93045

Browse files
committed
update_lints
1 parent 6dcade0 commit 1f93045

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3979,6 +3979,7 @@ Released 2018-09-13
39793979
[`len_zero`]: https://rust-lang.github.io/rust-clippy/master/index.html#len_zero
39803980
[`let_and_return`]: https://rust-lang.github.io/rust-clippy/master/index.html#let_and_return
39813981
[`let_underscore_drop`]: https://rust-lang.github.io/rust-clippy/master/index.html#let_underscore_drop
3982+
[`let_underscore_future`]: https://rust-lang.github.io/rust-clippy/master/index.html#let_underscore_future
39823983
[`let_underscore_lock`]: https://rust-lang.github.io/rust-clippy/master/index.html#let_underscore_lock
39833984
[`let_underscore_must_use`]: https://rust-lang.github.io/rust-clippy/master/index.html#let_underscore_must_use
39843985
[`let_unit_value`]: https://rust-lang.github.io/rust-clippy/master/index.html#let_unit_value

clippy_lints/src/declared_lints.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -215,6 +215,7 @@ pub(crate) static LINTS: &[&crate::LintInfo] = &[
215215
crate::len_zero::LEN_WITHOUT_IS_EMPTY_INFO,
216216
crate::len_zero::LEN_ZERO_INFO,
217217
crate::let_if_seq::USELESS_LET_IF_SEQ_INFO,
218+
crate::let_underscore::LET_UNDERSCORE_FUTURE_INFO,
218219
crate::let_underscore::LET_UNDERSCORE_LOCK_INFO,
219220
crate::let_underscore::LET_UNDERSCORE_MUST_USE_INFO,
220221
crate::lifetimes::EXTRA_UNUSED_LIFETIMES_INFO,

0 commit comments

Comments
 (0)