Skip to content

Commit

Permalink
Remove unneeded Clone impls from fuzz target
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed May 15, 2022
1 parent 4feccb8 commit efadf15
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fuzz/fuzz_targets/fuzz_ryu.rs
Expand Up @@ -3,13 +3,13 @@
use arbitrary::Arbitrary;
use libfuzzer_sys::fuzz_target;

#[derive(Arbitrary, Debug, Clone)]
#[derive(Arbitrary, Debug)]
enum FloatInput {
F32(f32),
F64(f64),
}

#[derive(Arbitrary, Debug, Clone)]
#[derive(Arbitrary, Debug)]
struct Inputs {
inputs: Vec<(FloatInput, bool)>,
}
Expand Down

0 comments on commit efadf15

Please sign in to comment.