clippy fix
Some checks failed
Deny / audit (push) Has been cancelled

This commit is contained in:
hinto.janai 2024-11-28 15:46:34 -05:00
parent f998f61d26
commit d0ca28beca
No known key found for this signature in database
GPG key ID: D47CE05FA175A499
2 changed files with 2 additions and 2 deletions

View file

@ -32,7 +32,7 @@ macro_rules! impl_hash_benchmark {
// - The name of the benchmark function // - The name of the benchmark function
// - The input(s) to the hash function for that benchmark function // - The input(s) to the hash function for that benchmark function
$( $(
$fn_name:ident => ($($input:expr),* $(,)?) $fn_name:ident => ($($input:expr_2021),* $(,)?)
),* $(,)? ),* $(,)?
} }
)*) => { )*) => {

View file

@ -27,7 +27,7 @@ macro_rules! generate_serde_benchmarks {
( (
$( $(
// The type to test => JSON of that type // The type to test => JSON of that type
$t:ty => $t_example:expr $t:ty => $t_example:expr_2021
),* $(,)? ),* $(,)?
) => { paste::paste! { ) => { paste::paste! {
// Generate the benchmarking functions. // Generate the benchmarking functions.