From 3796eb9d43bd2ead101efacd3dc35ba6d01041a1 Mon Sep 17 00:00:00 2001 From: mrmr1993 Date: Sun, 12 Jan 2025 11:12:49 +0000 Subject: [PATCH] It's so great to have clippy waste our collective time --- o1vm/src/interpreters/mips/witness.rs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/o1vm/src/interpreters/mips/witness.rs b/o1vm/src/interpreters/mips/witness.rs index 3e95bbac31..8fa26522ad 100644 --- a/o1vm/src/interpreters/mips/witness.rs +++ b/o1vm/src/interpreters/mips/witness.rs @@ -89,6 +89,12 @@ impl LookupMultiplicities { } } +impl Default for LookupMultiplicities { + fn default() -> Self { + Self::new() + } +} + /// This structure represents the environment the virtual machine state will use /// to transition. This environment will be used by the interpreter. The virtual /// machine has access to its internal state and some external memory. In