Skip to content

Commit

Permalink
macros: Fix derive debug
Browse files Browse the repository at this point in the history
  • Loading branch information
Aursen committed Sep 2, 2024
1 parent 3398fd1 commit 466bdc3
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 1 addition & 0 deletions utils/macros/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Sablier macros
3 changes: 1 addition & 2 deletions utils/macros/src/space/arg.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ use syn::{

use super::Value;

#[derive(Debug)]
pub struct Arg {
pub is_raw: bool,
pub value: Value,
Expand Down Expand Up @@ -42,7 +41,7 @@ impl Parse for Arg {
}
}

#[derive(Default, Debug)]
#[derive(Default)]
pub struct Args(pub Vec<Arg>);

impl Deref for Args {
Expand Down
1 change: 0 additions & 1 deletion utils/macros/src/space/value.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ use proc_macro2::TokenStream as TokenStream2;
use quote::{quote, ToTokens};
use syn::{parse::Parse, Ident, LitInt};

#[derive(Debug)]
pub enum Value {
Lit(LitInt),
Ident(Ident),
Expand Down

0 comments on commit 466bdc3

Please sign in to comment.