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
4884
4884
[ `large_futures` ] : https://rust-lang.github.io/rust-clippy/master/index.html#large_futures
4885
4885
[ `large_include_file` ] : https://rust-lang.github.io/rust-clippy/master/index.html#large_include_file
4886
4886
[ `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
4887
4888
[ `large_types_passed_by_value` ] : https://rust-lang.github.io/rust-clippy/master/index.html#large_types_passed_by_value
4888
4889
[ `len_without_is_empty` ] : https://rust-lang.github.io/rust-clippy/master/index.html#len_without_is_empty
4889
4890
[ `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] = &[
198
198
crate :: functions:: TOO_MANY_ARGUMENTS_INFO ,
199
199
crate :: functions:: TOO_MANY_LINES_INFO ,
200
200
crate :: future_not_send:: FUTURE_NOT_SEND_INFO ,
201
- crate :: large_stack_frames:: LARGE_STACK_FRAMES_INFO ,
202
201
crate :: if_let_mutex:: IF_LET_MUTEX_INFO ,
203
202
crate :: if_not_else:: IF_NOT_ELSE_INFO ,
204
203
crate :: if_then_some_else_none:: IF_THEN_SOME_ELSE_NONE_INFO ,
@@ -229,6 +228,7 @@ pub(crate) static LINTS: &[&crate::LintInfo] = &[
229
228
crate :: large_futures:: LARGE_FUTURES_INFO ,
230
229
crate :: large_include_file:: LARGE_INCLUDE_FILE_INFO ,
231
230
crate :: large_stack_arrays:: LARGE_STACK_ARRAYS_INFO ,
231
+ crate :: large_stack_frames:: LARGE_STACK_FRAMES_INFO ,
232
232
crate :: len_zero:: COMPARISON_TO_EMPTY_INFO ,
233
233
crate :: len_zero:: LEN_WITHOUT_IS_EMPTY_INFO ,
234
234
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;
142
142
mod from_str_radix_10;
143
143
mod functions;
144
144
mod future_not_send;
145
- mod large_stack_frames;
146
145
mod if_let_mutex;
147
146
mod if_not_else;
148
147
mod if_then_some_else_none;
@@ -169,6 +168,7 @@ mod large_enum_variant;
169
168
mod large_futures;
170
169
mod large_include_file;
171
170
mod large_stack_arrays;
171
+ mod large_stack_frames;
172
172
mod len_zero;
173
173
mod let_if_seq;
174
174
mod let_underscore;
You can’t perform that action at this time.
0 commit comments