From 717f5b57bfac298fc54be2f908d5a455ff436129 Mon Sep 17 00:00:00 2001 From: wasm-forge <122647775+wasm-forge@users.noreply.github.com> Date: Fri, 30 Aug 2024 00:28:56 +0200 Subject: [PATCH] minor error fix --- src/storage/stable.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/storage/stable.rs b/src/storage/stable.rs index e4f2584..25e9744 100644 --- a/src/storage/stable.rs +++ b/src/storage/stable.rs @@ -32,7 +32,7 @@ const MEMORY_INDEX_COUNT: u8 = 10; const ZEROES: [u8; MAX_FILE_CHUNK_SIZE_V2] = [0u8; MAX_FILE_CHUNK_SIZE_V2]; -#[derive(Clone, Copy, Debug)] +#[derive(Clone, Copy, Debug, PartialEq)] pub enum ChunkType { V1, V2 }