Skip to content

Commit

Permalink
Implement Trace for unit tuple '()'
Browse files Browse the repository at this point in the history
Again, this is a problem with macro recursion ^_^
  • Loading branch information
Techcable committed Jan 23, 2021
1 parent 5cc53f6 commit 2785d75
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/manually_traced/core.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ use zerogc_derive::unsafe_gc_impl;

macro_rules! trace_tuple {
{ $single_param:ident } => {
trace_tuple_impl!();
trace_tuple_impl!($single_param);
};
{ $first_param:ident, $($param:ident),* } => {
Expand Down

0 comments on commit 2785d75

Please sign in to comment.