Skip to content

Commit

Permalink
Move ptr sized integer variant last
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed May 15, 2022
1 parent 6f99ca5 commit ff6798f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions fuzz/fuzz_targets/fuzz_itoa.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ enum IntegerInput {
U32(u32),
I64(i64),
U64(u64),
ISIZE(isize),
USIZE(usize),
I128(i128),
U128(u128),
ISIZE(isize),
USIZE(usize),
}

fuzz_target!(|input: IntegerInput| {
Expand All @@ -30,9 +30,9 @@ fuzz_target!(|input: IntegerInput| {
IntegerInput::U32(val) => buffer.format(val),
IntegerInput::I64(val) => buffer.format(val),
IntegerInput::U64(val) => buffer.format(val),
IntegerInput::ISIZE(val) => buffer.format(val),
IntegerInput::USIZE(val) => buffer.format(val),
IntegerInput::I128(val) => buffer.format(val),
IntegerInput::U128(val) => buffer.format(val),
IntegerInput::ISIZE(val) => buffer.format(val),
IntegerInput::USIZE(val) => buffer.format(val),
};
});

0 comments on commit ff6798f

Please sign in to comment.