File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed
Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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 ,
Original file line number Diff line number Diff line change @@ -142,7 +142,6 @@ mod from_raw_with_void_ptr;
142142mod from_str_radix_10;
143143mod functions;
144144mod future_not_send;
145- mod large_stack_frames;
146145mod if_let_mutex;
147146mod if_not_else;
148147mod if_then_some_else_none;
@@ -169,6 +168,7 @@ mod large_enum_variant;
169168mod large_futures;
170169mod large_include_file;
171170mod large_stack_arrays;
171+ mod large_stack_frames;
172172mod len_zero;
173173mod let_if_seq;
174174mod let_underscore;
You can’t perform that action at this time.
0 commit comments