File tree 3 files changed +5
-6
lines changed
3 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,8 @@ Welcome to `LibAFL`
30
30
clippy:: ptr_cast_constness,
31
31
clippy:: unsafe_derive_deserialize,
32
32
clippy:: similar_names,
33
- clippy:: too_many_lines
33
+ clippy:: too_many_lines,
34
+ clippy:: into_iter_without_iter, // broken
34
35
) ]
35
36
#![ cfg_attr( not( test) , warn(
36
37
missing_debug_implementations,
Original file line number Diff line number Diff line change @@ -232,10 +232,7 @@ where
232
232
}
233
233
234
234
/// Cycles the strategy of the scheduler; tries to mimic AFL++'s cycling formula
235
- fn cycle_schedule (
236
- & mut self ,
237
- metadata : & mut SchedulerMetadata ,
238
- ) -> Result < PowerSchedule , Error > {
235
+ fn cycle_schedule ( & mut self , metadata : & mut SchedulerMetadata ) -> Result < PowerSchedule , Error > {
239
236
let next_strat = match metadata. strat ( ) . ok_or ( Error :: illegal_argument (
240
237
"No strategy specified when initializing scheduler; cannot cycle!" ,
241
238
) ) ? {
Original file line number Diff line number Diff line change 16
16
clippy:: missing_panics_doc,
17
17
clippy:: missing_docs_in_private_items,
18
18
clippy:: module_name_repetitions,
19
- clippy:: pub_underscore_fields
19
+ clippy:: pub_underscore_fields,
20
+ clippy:: into_iter_without_iter, // broken
20
21
) ]
21
22
#![ cfg_attr( not( test) , warn(
22
23
missing_debug_implementations,
You can’t perform that action at this time.
0 commit comments