fix warnings and criterion in main

This commit is contained in:
Maple 2025-11-13 10:06:58 +01:00
commit 755e5c4747
15 changed files with 33 additions and 56 deletions

View file

@ -31,7 +31,7 @@ impl RmcSerialize for QResult{
Ok(())
}
fn deserialize(mut reader: &mut impl Read) -> Result<Self> {
fn deserialize(reader: &mut impl Read) -> Result<Self> {
Ok(reader.read_struct(IS_BIG_ENDIAN)?)
}
}