From b70397f951d66f97b49aa7b0e5559a4ab699b56b Mon Sep 17 00:00:00 2001 From: Blaine Bublitz Date: Fri, 30 Jun 2023 09:41:56 -0700 Subject: [PATCH] feat: Derive Copy for Language --- acvm/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/acvm/src/lib.rs b/acvm/src/lib.rs index a00e18819..f63b5f7d9 100644 --- a/acvm/src/lib.rs +++ b/acvm/src/lib.rs @@ -20,7 +20,7 @@ pub use acir::FieldElement; /// Supported NP complete languages /// This might need to be in ACIR instead -#[derive(Debug, Clone)] +#[derive(Debug, Clone, Copy)] pub enum Language { R1CS, PLONKCSat { width: usize },