Skip to content

Commit 760f91f

Browse files
committed
cargo dev update_lints
1 parent 7312a93 commit 760f91f

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4884,6 +4884,7 @@ Released 2018-09-13
48844884
[`large_futures`]: https://rust-lang.github.io/rust-clippy/master/index.html#large_futures
48854885
[`large_include_file`]: https://rust-lang.github.io/rust-clippy/master/index.html#large_include_file
48864886
[`large_stack_arrays`]: https://rust-lang.github.io/rust-clippy/master/index.html#large_stack_arrays
4887+
[`large_stack_frames`]: https://rust-lang.github.io/rust-clippy/master/index.html#large_stack_frames
48874888
[`large_types_passed_by_value`]: https://rust-lang.github.io/rust-clippy/master/index.html#large_types_passed_by_value
48884889
[`len_without_is_empty`]: https://rust-lang.github.io/rust-clippy/master/index.html#len_without_is_empty
48894890
[`len_zero`]: https://rust-lang.github.io/rust-clippy/master/index.html#len_zero

clippy_lints/src/declared_lints.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,6 @@ pub(crate) static LINTS: &[&crate::LintInfo] = &[
198198
crate::functions::TOO_MANY_ARGUMENTS_INFO,
199199
crate::functions::TOO_MANY_LINES_INFO,
200200
crate::future_not_send::FUTURE_NOT_SEND_INFO,
201-
crate::large_stack_frames::LARGE_STACK_FRAMES_INFO,
202201
crate::if_let_mutex::IF_LET_MUTEX_INFO,
203202
crate::if_not_else::IF_NOT_ELSE_INFO,
204203
crate::if_then_some_else_none::IF_THEN_SOME_ELSE_NONE_INFO,
@@ -229,6 +228,7 @@ pub(crate) static LINTS: &[&crate::LintInfo] = &[
229228
crate::large_futures::LARGE_FUTURES_INFO,
230229
crate::large_include_file::LARGE_INCLUDE_FILE_INFO,
231230
crate::large_stack_arrays::LARGE_STACK_ARRAYS_INFO,
231+
crate::large_stack_frames::LARGE_STACK_FRAMES_INFO,
232232
crate::len_zero::COMPARISON_TO_EMPTY_INFO,
233233
crate::len_zero::LEN_WITHOUT_IS_EMPTY_INFO,
234234
crate::len_zero::LEN_ZERO_INFO,

clippy_lints/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,6 @@ mod from_raw_with_void_ptr;
142142
mod from_str_radix_10;
143143
mod functions;
144144
mod future_not_send;
145-
mod large_stack_frames;
146145
mod if_let_mutex;
147146
mod if_not_else;
148147
mod if_then_some_else_none;
@@ -169,6 +168,7 @@ mod large_enum_variant;
169168
mod large_futures;
170169
mod large_include_file;
171170
mod large_stack_arrays;
171+
mod large_stack_frames;
172172
mod len_zero;
173173
mod let_if_seq;
174174
mod let_underscore;

0 commit comments

Comments
 (0)