Skip to content

Commit

Permalink
Don't derive default on event.
Browse files Browse the repository at this point in the history
  • Loading branch information
tomusdrw committed Feb 15, 2018
1 parent a1a1448 commit 915a155
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion derive/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ fn declare_logs(event: &Event) -> quote::Tokens {
.collect();

quote! {
#[derive(Debug, Default, Clone, PartialEq)]
#[derive(Debug, Clone, PartialEq)]
pub struct #name {
#(#params)*
}
Expand Down

0 comments on commit 915a155

Please sign in to comment.