wasm_interp: don't give Signature the Clone trait just for a test!

This commit is contained in:
Brian Carroll 2022-11-27 20:34:03 +00:00
parent 8ff843261a
commit 9e7a92574d
No known key found for this signature in database
GPG key ID: 5C7B2EC4101703C0
2 changed files with 4 additions and 4 deletions

View file

@ -194,7 +194,7 @@ pub fn update_section_size<T: SerialBuffer>(buffer: &mut T, header_indices: Sect
*
*******************************************************************/
#[derive(PartialEq, Eq, Debug, Clone)]
#[derive(PartialEq, Eq, Debug)]
pub struct Signature<'a> {
pub param_types: Vec<'a, ValueType>,
pub ret_type: Option<ValueType>,