Remove repr from string enum

This commit is contained in:
Joel Wachsler 2022-08-08 18:03:24 +00:00
parent 84bc1c2a60
commit 35ea45ad56

View File

@ -170,7 +170,7 @@ impl EnumValueType {
),
EnumValueType::String => (
group.enum_derives(&["serde::Deserialize", "serde::Serialize"]),
quote! { #[repr(i8)] },
quote! {},
),
}
}