Fix some of the edition 2024 warnings

This commit is contained in:
Clément Renault 2025-04-01 12:21:33 +02:00
parent 2762d5a32a
commit aa87064a13
No known key found for this signature in database
GPG key ID: F250A4C4E3AE5F5F
82 changed files with 323 additions and 317 deletions

View file

@ -10,10 +10,10 @@ use crate::json;
macro_rules! verify_snapshot {
(
$orig:expr,
$snapshot: expr,
$orig:expr_2021,
$snapshot: expr_2021,
|$server:ident| =>
$($e:expr,)+) => {
$($e:expr_2021,)+) => {
use std::sync::Arc;
let snapshot = Arc::new($snapshot);
let orig = Arc::new($orig);